Advertisement
Guest User

Untitled

a guest
Feb 5th, 2018
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. typical ssh tunnel
  2. ssh -N -p 22 i@linux.com
  3.  
  4. forward pop3 and smtp thtrough ssh
  5.  
  6. ssh -N -p 2022 i@linux.com
  7.  
  8.  
  9. Forward Google Talk
  10.  
  11. ssh -g -p 2022 -N i@linux.com
  12.  
  13.  
  14. Encript your HTTP Traffic
  15.  
  16. ssh -D 5222 i@linux.com -N
  17. # set browser to localhost:5222
  18.  
  19. Tunelling X and VNC Sessions
  20.  
  21. ssh -X -p 2022 i@linux.com
  22.  
  23. ssh -p 2022 i@linux.com -L 5900:localhost:5900
  24.  
  25. client machine: ssh -R remoteport:localhost:22 i@svr
  26. server side : ssh -p 2048 localhost
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement