Remote Using SSH Jump Host

Remote Using SSH Jump Host

2020, Dec 06    

The simplest way to connect to a target server via a jump host is using the -J flag from the command line. This tells ssh to make a connection to the jump host and then establish a TCP forwarding to the target server, from there (make sure you’ve Passwordless SSH Login between machines).

ssh -J [HOST1] [HOST2]