Reverse ssh tunnel


/ Published in: Bash
Save to your folder(s)

This is very useful with dinamic IP connections. You can connect from the host with the dinamic IP, leave the tunnel open to other machine with ssh access and fixed IP and then connect to this machine on specific port (22000 in the example) to connect to the host with dinamic IP.

Also it can be useful in case you need access to a host which is inside a local network and you can't access from outside, but from this host you can connect to outside.


Copy this code and paste it in your HTML
  1. # Reverse ssh tunnel:
  2. # Host to access -> destination.host.net ; user=dest_user
  3. # Source host -> source.host.net ; user=src_user
  4. [email protected]$ ssh -R 22000:localhost:22 -f -N src_user@source.host.net
  5. [email protected]$ ssh -p 22000 dest_user@localhost

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.