SSH (Secure Shell)
Description
SSH is a protocol for establishing an encrypted tunnel between two network hosts that can be used to provide secure network services, notably:
- secure login (by means of the
ssh
command), and - secure file transfer (by means of the
scp
andsftp
commands), and - forwarding of X11 (X Window System) connections.
The most popular Open Source implementation of the SSH protocol is OpenSSH.
microHOWTOs
- Forward a TCP port from an SSH client to an SSH server
- Forward a TCP port from an SSH server to an SSH client
Troubleshooting guides
Further reading
- The Secure Shell (SSH) Protocol Architecture, RFC 4251, IETF, January 2006
- OpenSSH (official website)