Secure Shell
Examples of services that can use SSH are Git, rsync and X11 forwarding. Services that always use SSH are SCP and SFTP.
According to Wikipedia:
- Secure Shell (SSH) is a cryptographic network protocol for operating network services securely over an unsecured network. Its most notable applications are remote login and command-line execution.
An SSH server, by default, listens on the standard TCP port 22. An SSH client program is typically used for establishing connections to an sshd daemon accepting remote connections. Both are commonly present on most modern operating systems, including macOS, GNU/Linux, Solaris and OpenVMS. Proprietary, freeware and open source versions of various levels of complexity and completeness exist.
Implementations
- Dropbear — Lightweight SSH server. The command-line ssh client is named dbclient(1).
- OpenSSH — Premier connectivity tool for remote login with the SSH protocol
- TinySSH — A minimalistic SSH server which implements only a subset of SSHv2 features; glibc as its single dependency.
Securing
See Security#SSH.
gollark: That would make sense.
gollark: It... might be?
gollark: This is about the first half.
gollark: ```lisp(newvar '- [(+ arg1 (negate arg2))])(newvar '-- [(- arg1 1)])(newvar '++ [(+ arg1 1)])(newvar '!! [ (if arg1 [false] [true])])(newvar 'ztb [ (if (== arg1 0) [false] [if (== arg1 false) [false] [true]])])(newvar 'ifz [ (if (ztb arg1) arg2 arg3)])(newvar 'inz [ (if (!! (ztb arg1)) arg2 arg3)])(newvar '! [ (inz arg1 [1] [(* arg1 (! (-- arg1)) )])])(newvar 'for [ (if (arg2 arg1) [ (arg3 arg1) (for (++ arg1) arg2 arg3) ][true]) ])```
gollark: I have the stdlib somewhere.
See also
- Terminal multiplexers (often used over SSH)
- Wikipedia:Comparison of SSH clients
- Wikipedia:Comparison of SSH servers
- SSH Key Fingerprint formats
This article is issued from Archlinux. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.