「Secure Shell」の版間の差分

提供: ArchWiki
ナビゲーションに移動 検索に移動
(Kusanaginoturugi がページ「Secure Shell」をリダイレクトの「OpenSSH」に移動しました: https://wiki.archlinux.org/index.php?title=Secure_Shell&oldid=548688)
タグ: 新規リダイレクト
 
(Reprinted from the English Page.)
タグ: リダイレクト解消
1行目: 1行目:
  +
[[Category:Secure Shell]]
#転送 [[OpenSSH]]
 
  +
[[es:OpenSSH]]
  +
[[en:Secure Shell]]
  +
[[fr:Secure Shell]]
  +
[[pt:Secure Shell]]
  +
[[ru:OpenSSH]]
  +
[[zh-hans:Secure Shell]]
  +
{{Related articles start}}
  +
{{Related|SSHFS}}
  +
{{Related|Mosh}}
  +
{{Related|VPN over SSH}}
  +
{{Related articles end}}
  +
  +
According to [[Wikipedia:Secure Shell|Wikipedia]]:
  +
:Secure Shell (SSH) is a cryptographic network protocol for operating network services securely over an unsecured network. Typical applications include remote command-line login and remote command execution, but any network service can be secured with SSH.
  +
  +
Examples of services that can use SSH are [[Git]], [[rsync]] and [[X11 forwarding]]. Services that always use SSH are [[SCP and SFTP]].
  +
  +
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 ==
  +
  +
* {{App|[[Wikipedia:Dropbear (software)|Dropbear]]|Lightweight SSH server. The command-line ssh client is named {{man|1|dbclient}}.|https://matt.ucc.asn.au/dropbear/dropbear.html|{{Pkg|dropbear}}}}
  +
* {{App|[[OpenSSH]]|Premier connectivity tool for remote login with the SSH protocol|https://www.openssh.com/portable.html|{{Pkg|openssh}}}}
  +
* {{App|TinySSH|A minimalistic SSH server which implements only a subset of SSHv2 features; glibc as its single dependency.|https://tinyssh.org/|{{Pkg|tinyssh}}}}
  +
  +
== Securing ==
  +
  +
See [[Security#SSH]].
  +
  +
== See also ==
  +
  +
* [[Terminal multiplexer]]s (often used over SSH)
  +
* [[Wikipedia:Comparison of SSH clients]]
  +
* [[Wikipedia:Comparison of SSH servers]]
  +
* [https://blog.webernetz.net/ssh-key-fingerprints/ SSH Key Fingerprint formats]

2022年3月9日 (水) 14:23時点における版

関連記事

According to Wikipedia:

Secure Shell (SSH) is a cryptographic network protocol for operating network services securely over an unsecured network. Typical applications include remote command-line login and remote command execution, but any network service can be secured with SSH.

Examples of services that can use SSH are Git, rsync and X11 forwarding. Services that always use SSH are SCP and SFTP.

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

https://matt.ucc.asn.au/dropbear/dropbear.html || dropbear
  • OpenSSH — Premier connectivity tool for remote login with the SSH protocol
https://www.openssh.com/portable.html || openssh
  • TinySSH — A minimalistic SSH server which implements only a subset of SSHv2 features; glibc as its single dependency.
https://tinyssh.org/ || tinyssh

Securing

See Security#SSH.

See also