SSH Tunneling for the win
Submitted by drjunior on Thu, 01/09/2014 - 12:35
This is extremely useful when there is a machine inside a network which can't have open ports. By using ssh remote port forwarding, it's possible to access that machine using another machine that can have open ports for everyone.
SSH Snippet: autossh -M 0 -N -f -R REMOTESERVER_ACCESSIBLE_BY_EVERYONE:8080:LOCAL_SERVER_NOT_ACCESSIBLE:8080 user@REMOTESERVER_ACCESSIBLE_BY_EVERYONE
- Log in to post comments