Difference between revisions of "OpenSSH/Tunelling"

From Ever changing code
Jump to navigation Jump to search
(Created page with "Different types of tunnelling: #Local port forwarding: connections from the SSH client are forwarded via the SSH server, then to a destination server #Remote port forwarding:...")
 
Line 8: Line 8:
= References =
= References =
*[https://vimeo.com/54505525 The Black Magic Of SSH] vimeo
*[https://vimeo.com/54505525 The Black Magic Of SSH] vimeo
*[http://unix.stackexchange.com/questions/46235/how-does-reverse-ssh-tunneling-work ssh-tunneling-work] unix.stackexchange.com, diagrams

Revision as of 14:53, 29 September 2016

Different types of tunnelling:

  1. Local port forwarding: connections from the SSH client are forwarded via the SSH server, then to a destination server
  2. Remote port forwarding: connections from the SSH server are forwarded via the SSH client, then to a destination server
  3. Dynamic port forwarding: connections from various programs are forwarded via the SSH client, then via the SSH server, and finally to several destination servers
  4. reverse SSH tunnel

References