SSH Dynamic Tunnel | cli | Linux

## Dynamic Tunnel ##
ssh -D 25000 -f -C -q -N user@domain.com

-D: Tells SSH that we want a SOCKS tunnel on the specified port number (you can choose a number between 1025-65536)
-f: Forks the process to the background
-C: Compresses the data before sending it
-q: Uses quiet mode
-N: Tells SSH that no command will be sent once the tunnel is up
-L local listening
-R Server listening
-p port on distant machine

img

2019-04-26 09:30:52

Comments

Add a Comment

Login or Register to post a Comment.

Homepage