SSH port forwards

SSH port forwards

By devin, 7 September, 2015

Here are the commands I use for ssh port forwards. If you add the -N flag it *won't* open an ssh session, but that's almost aesthetic. Imagine I'm running all of these from my laptop.

1) This creates an ssh tunnel from port 8000 on my laptop to port 80 on www.devinhoward.ca. The -L refers to forwarding my laptop's local port 8000. Then there are two more arguments tacked on: localhost and 80. These both are from the perspective of the remote machine, so in this case localhost means www.devinhoward.ca and port 80 means whatever www.devinhoward.ca is serving on port 80 (this website, in fact!).

ssh -N -L 8000:localhost:80 devin@www.devinhoward.ca

 

2) The same example as #1, but by omitting the -N flag I get an ssh tunnel AND an ssh session on www.devinhoward.ca. If I close the ssh session, I lose my tunnel. I prefer #1 to this method but there are uses in more complicated setups for this kind of thing.

ssh -L 8000:localhost:80 devin@www.devinhoward.ca

 

3) Now imagine I've got two servers at home. I'm still on my laptop, maybe at the library. One has an ssh port open to the world (call it homeserver). The other is cut off from the world entirely, but is serving web pages on port 80 inside my home network. Let's call this second server homeserver2, and say it's got a static IP on my home router of 192.168.1.50. So I can run this tricky command:

ssh -N -L 8000:192.168.1.50:80 devin@homeserver.devinhoward.ca

What this does is pretty cool:

  • -L 8000 -> this starts forwarding requests on my laptop at the library that are sent to http://localhost:8000.
  • :192.168.1.50:80 -> this means those requests ultimately end up forwarded to homeserver2! Cool!
  • homeserver.devinhoward.ca -> and of course, homeserver acts as the broker by sending the traffic through itself.

If someone were eavesdropping on this session, they'd only see encrypted traffic going out from my computer on port 22. There might be exceptions to this if homeserver2 was hosting a complex website that made requests to external websites.

4) Even better: let's update our /etc/hosts file and add the following line:

127.0.0.1 homeserver2.devinhoward.ca

Now requests in my laptop's browser to http://homeserver2.devinhoward.ca will go to my laptop on port 80. I can slightly modify the command above by changing the local port to 80 (prefixing with sudo so I can use local port 80):

sudo ssh -N -L 80:192.168.1.50:80 devin@homeserver.devinhoward.ca

Now. whenever I have my ssh tunnel open I can access homeserver2.devinhoward.ca on the network! The downside to this approach is that at home I'll have issues without the tunnel open. My approach so far when using these commands has been to edit /etc/hosts manually each time I open a tunnel.

Tags

Plain text

  • No HTML tags allowed.
  • Web page addresses and email addresses turn into links automatically.
  • Lines and paragraphs break automatically.