SSH Jump Hosts
Small addition to prior SSH tips, using SSH Jump hosts.
Follow-up to:
- SSH key authentication with PuTTY
- SSH key authentication with PuTTY, Part 2, Tunneling with Plink
- SSH Tips
- SSH Tunneling with a manual first hop
From command-line (including Git Bash on Windows):
$ ssh -J jump-server-user@jump.mydomain.com \
-D8888 \
-L2222:any-protected.mydomain.com:22 \
protected-server-user@any-protected.mydomain.com