This is Gentoo's testing wiki. It is a non-operational environment and its textual content is outdated.

Please visit our production wiki at https://wiki.gentoo.org

SSH jump host

From Gentoo Wiki (test)
Jump to:navigation Jump to:search

An alternative to SSH tunneling to access internal machines through gateway is using jump hosts.

The idea is to use ProxyCommand to automatically execute ssh command on remote host to jump to the next host and forward all traffic through.

Prerequisites

  • SSH access to the gateway machine and the internal one.
  • Gateway machine has Netcat installed.

Dynamic jumphost list

You can use the -J option to jump through a host:

user $ssh -J host1 host2

If usernames or ports on machines differ, specify them:

user $ssh -J user1@host1:port1 user2@host2:port2

Multiple jumps

The same syntax can be used to make jumps over multiple machines:

user $ssh -J user1@host1:port1,user2@host2:port2 user3@host3

Static jumphost list

Static jumphost list means, that you know the jumphost or jumphosts you need, to reach a host. Therefore you can create a static jumphost 'routing' in ~/.ssh/config file. The advantage in comparison to the dynamic jumphost option is, that you don't have to provide the .ssh config on jumphosts between your machine and all the other jumphosts between you and the final host you want to jump to.

Setup

FILE ~/.ssh/configProxyJump Example
### First jumphost. Directly reachable
Host betajump
  HostName jumphost1.example.org

### Host to jump to via jumphost1.example.org
Host behindbeta
  HostName behindbeta.example.org
  ProxyJump  betajump

Usage

user $ssh behindalpha

If usernames on machines differ, specify them by modifing the correspondent ProxyJump line:

FILE ~/.ssh/configModify correspondent ProxyCommand
ProxyJump  otheruser@behindalpha

It works with scp command, too:

user $scp filename behindalphabeta:~/
Note
The colon and path at the end is needed so that scp recognizes it as remote.

Multiple jumps

The same syntax can be used to make jumps over multiple machines:

FILE ~/.ssh/configAdd this text
### First jumphost. Directly reachable
Host alphajump
  HostName jumphost1.example.org

### Second jumphost. Only reachable via jumphost1.example.org
Host betajump
  HostName jumphost2.example.org
  ProxyJump alphajump

### Host only reachable via alphajump and betajump
Host behindalphabeta
  HostName behindalphabeta.example.org
  ProxyJump betajump
user $ssh behindalphabeta

Tips

To ease the connecting even further:

External resources