Table of Contents

SSH tunneling

Sometimes you might be elsewhere, but need to log in to a system on your network via e.g. VNC or RDP. You don't have a VPN at hand, the firewall of course doesn't allow VNC or RDP and you are in desperate need of that connection.

Well, if there's an SSH server running on the remote network that is reachable from the internet, you can easily tunnel the connection through SSH.

Just run one simple command on your local machine:

ssh -C -N -L <local port>:<remote machine to connect to>:<remote port> <ssh-server>

Afterwards, connect to localhost:<local port> and you are done!

Note that it will seem as if your SSH connection hangs because no login will happen. That is normal, as soon as you <Control> + <c> the SSH it will also kill the tunnel.

Examples

VNC

Assumptions:

In that case the ssh-command would look like this:

ssh -C -N -L 5901:192.168.17.123:5900 user@1.2.3.4

Then, connect your vncviewer to localhost and you “get the picture”:

 vncviewer localhost:5901

RDP

Assumptions:

In that case the ssh-command would look like this:

ssh -C -N -L 3389:192.168.17.123:3389 user@1.2.3.4

Then, connect your RDP viewer to localhost and you “get the picture”:

rdesktop localhost

Website

There might be a situation when you want to tunnel a whole website through an SSH connection running to another host. For example, if you do not trust VPN providers (which you maybe shouldn't) but still want to circumvent certain geolocation issues.

Websites can be tricky though because of heavy third-party integrations nowadays, so the easiest way to do that is to create a SOCKSv5 proxy and use that in your browser.

To start the proxy, run this SSH command:

ssh -C -N -D 8080 <remote machine to connect to>

Afterwards, use localhost and port 8080 as the SOCKSv5 proxy in your browser. Please refer to your browsers manual where and how to set a Proxy, I find it easiest in Firefox:

Menu → Settings → General → Network Settings → Settings → Manual Proxy Configuration

SSH Options

These SSH options are used:

-C Use compression
Don't use this option on slow machines!
-D Create a local SOCKS port
-N Don't execute a remote command (no login prompt)
-L Use port forwarding (tunneling)

For more information please see man ssh.