SSH cheatsheet updated: support for SSH tunnels between local host and remote host

This commit is contained in:
poliveira89 2014-11-22 17:15:51 +00:00
parent 6f579f9234
commit 61458933eb
1 changed files with 3 additions and 0 deletions

View File

@ -10,6 +10,9 @@ ssh -t user@example.com 'the-remote-command'
# To tunnel an x session over SSH:
ssh -X user@example.com
# Redirect traffic with a tunnel between local host (port 8080) and a remote host (remote.example.com:5000) through a proxy (personal.server.com):
ssh -f -L 8080:remote.example.com:5000 user@personal.server.com -N
# To launch a specific x application over SSH:
ssh -X -t user@example.com 'chromium-browser'