From 61458933ebefd6403d672a32ea42eaebcb3e9ab6 Mon Sep 17 00:00:00 2001 From: poliveira89 Date: Sat, 22 Nov 2014 17:15:51 +0000 Subject: [PATCH] SSH cheatsheet updated: support for SSH tunnels between local host and remote host --- cheat/cheatsheets/ssh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cheat/cheatsheets/ssh b/cheat/cheatsheets/ssh index ce11b52..e9ba18f 100644 --- a/cheat/cheatsheets/ssh +++ b/cheat/cheatsheets/ssh @@ -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'