Secure Shell
From Exampleproblems
In computing, Secure Shell or SSH is both a computer program and an associated network protocol designed for logging into and executing commands on a networked computer. The designers of SSH aimed to replace the earlier rlogin, TELNET and rsh protocols, and the resultant protocol provides secure encrypted communications between two untrusted hosts over an insecure network. Users of SSH can also use it for tunneling, forwarding arbitrary TCP ports and X11 connections over the resultant secure channel; and can transfer files using the associated SFTP or SCP protocols. An ssh server, by default, listens on the standard TCP port 22.
Contents |
History
In 1995, Tatu Ylönen, a researcher at Helsinki University of Technology, Finland, designed the first version of the protocol (now called SSH-1) prompted by a password-sniffing attack at his university network. Ylönen released his implementation as open source in July 1995, and the tool quickly gained in popularity. Towards the end of 1995, the SSH user base had grown to 20,000 users in fifty countries.
In December 1995, Ylönen founded SSH Communications Security to market and develop SSH. The original version of the SSH software used various pieces of free software, such as GNU libgmp, but later versions released by SSH Secure Communications evolved into increasingly proprietary software. SSH Communications Security subsequently relicensed SSH to F-Secure (formerly known as Data Fellows). SSH Secure Communications has a USA subsidiary in Palo Alto, California.
In 1996, a revised version of the protocol SSH-2 was designed, incompatible with SSH-1. The IETF "secsh" working group has started to standardise SSH-2, which features both security and feature improvements over SSH-1. Better security, for example, comes through Diffie-Hellman key exchange and strong integrity checking via MACs. New features of SSH-2 include the ability to run any number of shell sessions over a single SSH connection [1].
Since SSH-1 has inherent design flaws which make it vulnerable to attacks, it is now generally considered obsolete and should no longer be used. In practice most modern servers and clients support SSH-2, which should be used exclusively (by explicitly disabling fallback to SSH-1). However, software not supporting SSH-2 is still used by many organizations, which can make it hard to avoid the use of SSH-1.
An ssh program commonly appears for use on Unix-like systems for client connections as well as a daemon such as sshd for accepting remote connections. Implementations of SSH exist for most modern platforms including Microsoft Windows, Mac OS, Linux-based distributions and BSD operating systems. Commercial, freeware and open source versions of various levels of complexity and completeness exist.
It is estimated that, at the end of 2000, there were 2,000,000 users of SSH.
Uses of SSH
SSH is most commonly used:
- in combination with SFTP, as a secure alternative to FTP which can be set up more easily on a small scale without a public key infrastructure and X.509 certificates;
- in combination with SCP, as a secure alternative for rcp file transfers - more often used in environments involving Unix;
- for port forwarding or tunneling, frequently as an alternative to a full-fledged VPN. In this type of use, a (non-secure) TCP/IP connection of an external application is redirected to the SSH program (client or server), which forwards it to the other SSH party (server or client), which in turn forwards the connection to the desired destination host. The forwarded connection is cryptographically encrypted and protected on the path between the SSH client and server only. Uses of SSH port forwarding include accessing database servers, email servers, securing X11, Windows Remote Desktop and VNC connections or even forwarding Windows file shares;
- with an SSH client that supports dynamic port forwarding (presenting to other programs a SOCKS or HTTP 'CONNECT' proxy interface), SSH can be used even for generally browsing the web through an encrypted proxy connection, using the SSH server as a proxy;
- with an SSH client that supports terminal protocols, for remote administration of the SSH server computer via terminal (character-mode) console;
- with an SSH client that supports SSH exec requests (frequently embedded in other software, e.g. a network monitoring program), for automated remote monitoring and management of servers.
SSH architecture
SSH has a clean internal architecture with well-separated layers. These are:
- The transport layer. This layer handles initial key exchange and server authentication and sets up encryption, compression and integrity verification. It exposes to the upper layer an interface for sending and receiving plaintext packets of up to 32,768 bytes each (more can be allowed by the implementation). The transport layer also arranges for key re-exchange, usually after 1 GB of data have been transferred or after 1 hour has passed, whichever is sooner.
- The user authentication layer. This layer handles client authentication and provides a number of authentication methods. Authentication is client-driven, a fact commonly misunderstood by users; when one is prompted for a password, it is the SSH client prompting, not the server. The server merely responds to client's authentication requests. Widely used user authentication methods include the following:
- "password": a method for straightforward password authentication, including a facility allowing a password to be changed. This method is not implemented by all programs.
- "publickey": a method for public key-based authentication, usually supporting at least DSA or RSA keypairs, with other implementations also supporting X.509 certificates)
- "keyboard-interactive": a versatile method where the server sends one or more prompts to enter information and the client displays them and sends back responses keyed-in by the user. Used to provide one-time password authentication such as S/Key or SecurID. Used by some OpenSSH configurations when PAM is the underlying host authentication provider to effectively provide password authentication, sometimes leading to inability to log in with a client that supports just the plain "password" authentication method.
- GSSAPI authentication methods which provide an extensible scheme to perform SSH authentication using external mechanisms such as Kerberos 5 or NTLM, providing single sign on capability to SSH sessions. These methods are usually implemented by commercial SSH implementations for use in organizations.
- The connection layer. This layer defines the concept of channels, channel requests and global requests using which SSH services are provided. A single SSH connection can host multiple channels simultaneously, each transferring data in both directions. Channel requests are used to relay out-of-band channel specific data, such as the changed size of a terminal window or the exit code of a server-side process. The SSH client requests a server-side port to be forwarded using a global request. Standard channel types include:
- "shell" for terminal shells, SFTP and exec requests (including SCP transfers)
- "direct-tcpip" for client-to-server forwarded connections
- "forwarded-tcpip" for server-to-client forwarded connections
This open architecture provides considerable flexibility, allowing SSH to be used for a variety of purposes beyond secure shell. The functionality of the transport layer alone is comparable to TLS; the user authentication layer is highly extensible with custom authentication methods; and the connection layer provides the ability to multiplex many secondary sessions into a single SSH connection, a feature comparable to BEEP and not available in TLS.
List of implementations
There are many implementations of SSH available today and there are many elements which go into making each implementation, this list attempts to make it easier to find a specific SSH.
Free and Open Source
Multiplatform
- PuTTY - client suite supporting SSH, SFTP, SCP and telnet
- Ganymed SSH2 - a Java-based SSH-2 client library
- JavaSSH - a Java-based SSH client
- MindTerm - a Java implementation available free for personal usage.
Windows
- WinSCP - an open source SFTP and SCP client
- freeSSHd - a free full-featured SSH and Telnet server with SFTP and port forwarding support
- OpenSSH for Windows
- SSHDOS
- Tunnelier - Bitvise's SSH/SFTP client
- Whitehorn Secure Terminal - a freeware SSH/telnet client (PuTTY variant)
Macintosh
- MacSSH - Terminal Client for Classic MacOS (PPC and 68k)
Unix-like
- Lsh - the GNU Project's client and server
- OpenSSH - a highly portable SSH-1, 1.45 and 2 client and server, developed by OpenBSD
- Dropbear - client and server
- OSSH - a branch of the original implementation created by Björn Grönvall.
- libssh - a client-server library
Mobiles
- MidpSSH An Open Source J2ME implementation for many MIDP1 and MIDP2 enabled mobile phones and devices.
Proprietary software
Windows
- Private Shell - SSH and SFTP support
- PenguiNet - SSH-1 and 2 client
- SFTPPlus - Extends SFTP with additional audit & automation - Multiplatform
- Fortress - Pragma's SSH-1 and 2 server and client
- WinSSHD - Bitvise's SSH server
- SSH Tectia Client - from SSH Communications Security
- sshlib - Bitvise's C++ SSH-2 library
- SecureCRT - Supports ZMODEM / XMODEM file transfers
- ShellGuard - Former "Telneat"; SSH-1 and 2 client, also supports telnet protocol and direct connection
Mobiles
- Handheld - Pragma's PocketVT SSH-2 client for PocketPC and Windows CE handheld devices
- Idokorro Mobile SSH - client for the RIM BlackBerry and mobile phone
- Top Gun SSH - client for handhelds running Palm OS.
See also
- VNC can be tunneled through SSH to securely access a remote machine that is behind a firewall.
- Cygwin allows many Linux/BSD programs to run on Windows, including the OpenSSH client and server.
- Corkscrew - a tool that enables a user to run SSH over HTTPS proxy servers
- Proxytunnel, another program, offers more generic capabilities.
- Connect.c consists of a small C program which enables users to run SSH over HTTPS proxy servers.
- autossh, Automatically restarts SSH sessions and tunnels
References
- Daniel J. Barrett, Richard E. Silverman, and Robert G. Byrnes — SSH: The Secure Shell (The Definitive Guide), O'Reilly 2005 (2nd edition). ISBN 0-596-00895-3 [2].
- Michael Stahnke — Pro OpenSSH, Apress 2005 ISBN 1-590-59476-2 [3].
- Kurt Seifried, What's in a Name?, February 14, 2001, [4].
External links
- Info about SSH
- Using SSH
- A Guide to SSH Port Forwarding
- Displaying SSH with Cygwin/X
- IETF 'secsh' working group (for SSH-2)
- SSH Communications Security
- OpenSSH key management
Template:FOLDOCcs:SSH da:SSH de:Secure Shell es:Secure Shell fr:Secure shell it:Secure shell he:SSH nl:SSH ja:Secure Shell no:SSH pl:SSH pt:SSH ru:SSH sk:Secure shell sl:Secure shell fi:SSH sv:SSH vi:SSH tr:SSH
