SSH Proxy Jump Host on Linux


Linux Connectivity

Listed below are common examples of how to utilize the SSH Proxy Jump Host on the Linux platform.  Additional questions or concerns not answered by the document may be directed to the Heldpesk.

 

 

Terminal - Ubuntu:

In Terminal type in the following command:

ssh -J username@sshjump.depaul.edu username@target_server

 

 

sftp:

You can use the sftp command via the terminal to copy files through the Proxy Jump server.  The -J flag in sftp will handle the jump command just like with SSH. 

sftp -J username@sshjump.depaul.edu username@target_server

 

rsync:

You can use the rsync command via the terminal to sync files through the Proxy Jump server.  The -J flag in rsync will handle the jump command just like with SSH and SFTP. 

rsync -avz -e "ssh -J username@sshjump.depaul.edu" username@target_server:/target_server/path/ /destination_server/path/file.txt