Small addition to prior SSH tips, using SSH Jump hosts.

Follow-up to:

  1. SSH key authentication with PuTTY
  2. SSH key authentication with PuTTY, Part 2, Tunneling with Plink
  3. SSH Tips
  4. 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