Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The Jump-Host for Noctua 1 is fe.noctuanoctua1.pc2.uni-paderborn.de. Port 22 (SSH).

Interactive Sessions

We recommend the following combined command for an interactive session:

Code Block
ssh -t fe.noctuanoctua1.pc2.uni-paderborn.de ssh noctua

...

Code Block
Host noctua
   HostName fe.noctuanoctua1.pc2.uni-paderborn.de
   User [USERNAME]
   RequestTTY force
   IdentityFile [PATH TO PRIVATE KEY]
   IdentitiesOnly yes
   RemoteCommand ssh noctua

...

If you want to connect to the last connected frontend, then use this command:

Code Block
ssh -t fe.noctuanoctua1.pc2.uni-paderborn.de ssh noctua-last

If you need to a run graphical application, the -X option should be used, which enables X11 forwarding with X11 SECURITY extension. The complete command is

Code Block
ssh -X -t fe.noctuanoctua1.pc2.uni-paderborn.de ssh -X noctua

...