Skip to content

Using a ssh jumphost (to use DENBI cloud servers)

Jooa Hooli edited this page Mar 9, 2023 · 1 revision

DENBI servers need you to log in through the denbi-jumphost-01.bioquant.uni-heidelberg.de host. This host should know your ssh key if you signed up properly. You can then either login to the desired host {someip} by doing

ssh -J denbi-jumphost-01.bioquant.uni-heidelberg.de {someip}

Or add a ProxyJump to your ssh config:

Host denbi-jumphost-01.bioquant.uni-heidelberg.de
    User {yourremoteuser (denbi)} 
    IdentityFile {yoursshkey}
Host tscea
    Hostname {someip}
    IdentityFile {yoursshkey}
    User {yourremoteuser (vm)}
    ProxyJump denbi-jumphost-01.bioquant.uni-heidelberg.de
Clone this wiki locally