How to map ports on a remote server thru an SSH tunnel
Sometimes when You are developing locally You might want to connect to a remote server without opening up a lot of ports on the server. This is a simple trick to easily access services on a remote server without exposing the actual ports on the server. $ ssh -N -L 1234:localhost:1234 mickeymouse@exa…
