summaryrefslogtreecommitdiff
path: root/ssh.1
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2013-12-18 17:46:27 +1100
committerDamien Miller <djm@mindrot.org>2013-12-18 17:46:27 +1100
commit8ba0ead6985ea14999265136b14ffd5aeec516f9 (patch)
tree1fdf16c075d97bbcbe5548ce8ec2082d04d3925c /ssh.1
parent4f752cf71cf44bf4bc777541156c2bf56daf9ce9 (diff)
- naddy@cvs.openbsd.org 2013/12/07 11:58:46
[ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh-keyscan.1 ssh-keysign.8 ssh.1] [ssh_config.5 sshd.8 sshd_config.5] add missing mentions of ed25519; ok djm@
Diffstat (limited to 'ssh.1')
-rw-r--r--ssh.120
1 files changed, 14 insertions, 6 deletions
diff --git a/ssh.1 b/ssh.1
index fc56997f4..27794e2d0 100644
--- a/ssh.1
+++ b/ssh.1
@@ -33,8 +33,8 @@
33.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 33.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 34.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35.\" 35.\"
36.\" $OpenBSD: ssh.1,v 1.342 2013/11/26 12:14:54 jmc Exp $ 36.\" $OpenBSD: ssh.1,v 1.343 2013/12/07 11:58:46 naddy Exp $
37.Dd $Mdocdate: November 26 2013 $ 37.Dd $Mdocdate: December 7 2013 $
38.Dt SSH 1 38.Dt SSH 1
39.Os 39.Os
40.Sh NAME 40.Sh NAME
@@ -279,7 +279,8 @@ The default is
279.Pa ~/.ssh/identity 279.Pa ~/.ssh/identity
280for protocol version 1, and 280for protocol version 1, and
281.Pa ~/.ssh/id_dsa , 281.Pa ~/.ssh/id_dsa ,
282.Pa ~/.ssh/id_ecdsa 282.Pa ~/.ssh/id_ecdsa ,
283.Pa ~/.ssh/id_ed25519
283and 284and
284.Pa ~/.ssh/id_rsa 285.Pa ~/.ssh/id_rsa
285for protocol version 2. 286for protocol version 2.
@@ -757,7 +758,7 @@ key pair for authentication purposes.
757The server knows the public key, and only the user knows the private key. 758The server knows the public key, and only the user knows the private key.
758.Nm 759.Nm
759implements public key authentication protocol automatically, 760implements public key authentication protocol automatically,
760using one of the DSA, ECDSA or RSA algorithms. 761using one of the DSA, ECDSA, ED25519 or RSA algorithms.
761Protocol 1 is restricted to using only RSA keys, 762Protocol 1 is restricted to using only RSA keys,
762but protocol 2 may use any. 763but protocol 2 may use any.
763The HISTORY section of 764The HISTORY section of
@@ -784,6 +785,8 @@ This stores the private key in
784(protocol 2 DSA), 785(protocol 2 DSA),
785.Pa ~/.ssh/id_ecdsa 786.Pa ~/.ssh/id_ecdsa
786(protocol 2 ECDSA), 787(protocol 2 ECDSA),
788.Pa ~/.ssh/id_ed25519
789(protocol 2 ED25519),
787or 790or
788.Pa ~/.ssh/id_rsa 791.Pa ~/.ssh/id_rsa
789(protocol 2 RSA) 792(protocol 2 RSA)
@@ -794,6 +797,8 @@ and stores the public key in
794(protocol 2 DSA), 797(protocol 2 DSA),
795.Pa ~/.ssh/id_ecdsa.pub 798.Pa ~/.ssh/id_ecdsa.pub
796(protocol 2 ECDSA), 799(protocol 2 ECDSA),
800.Pa ~/.ssh/id_ed25519.pub
801(protocol 2 ED25519),
797or 802or
798.Pa ~/.ssh/id_rsa.pub 803.Pa ~/.ssh/id_rsa.pub
799(protocol 2 RSA) 804(protocol 2 RSA)
@@ -1333,8 +1338,8 @@ secret, but the recommended permissions are read/write/execute for the user,
1333and not accessible by others. 1338and not accessible by others.
1334.Pp 1339.Pp
1335.It Pa ~/.ssh/authorized_keys 1340.It Pa ~/.ssh/authorized_keys
1336Lists the public keys (DSA/ECDSA/RSA) that can be used for logging in as 1341Lists the public keys (DSA, ECDSA, ED25519, RSA)
1337this user. 1342that can be used for logging in as this user.
1338The format of this file is described in the 1343The format of this file is described in the
1339.Xr sshd 8 1344.Xr sshd 8
1340manual page. 1345manual page.
@@ -1356,6 +1361,7 @@ above.
1356.It Pa ~/.ssh/identity 1361.It Pa ~/.ssh/identity
1357.It Pa ~/.ssh/id_dsa 1362.It Pa ~/.ssh/id_dsa
1358.It Pa ~/.ssh/id_ecdsa 1363.It Pa ~/.ssh/id_ecdsa
1364.It Pa ~/.ssh/id_ed25519
1359.It Pa ~/.ssh/id_rsa 1365.It Pa ~/.ssh/id_rsa
1360Contains the private key for authentication. 1366Contains the private key for authentication.
1361These files 1367These files
@@ -1370,6 +1376,7 @@ sensitive part of this file using 3DES.
1370.It Pa ~/.ssh/identity.pub 1376.It Pa ~/.ssh/identity.pub
1371.It Pa ~/.ssh/id_dsa.pub 1377.It Pa ~/.ssh/id_dsa.pub
1372.It Pa ~/.ssh/id_ecdsa.pub 1378.It Pa ~/.ssh/id_ecdsa.pub
1379.It Pa ~/.ssh/id_ed25519.pub
1373.It Pa ~/.ssh/id_rsa.pub 1380.It Pa ~/.ssh/id_rsa.pub
1374Contains the public key for authentication. 1381Contains the public key for authentication.
1375These files are not 1382These files are not
@@ -1409,6 +1416,7 @@ The file format and configuration options are described in
1409.It Pa /etc/ssh/ssh_host_key 1416.It Pa /etc/ssh/ssh_host_key
1410.It Pa /etc/ssh/ssh_host_dsa_key 1417.It Pa /etc/ssh/ssh_host_dsa_key
1411.It Pa /etc/ssh/ssh_host_ecdsa_key 1418.It Pa /etc/ssh/ssh_host_ecdsa_key
1419.It Pa /etc/ssh/ssh_host_ed25519_key
1412.It Pa /etc/ssh/ssh_host_rsa_key 1420.It Pa /etc/ssh/ssh_host_rsa_key
1413These files contain the private parts of the host keys 1421These files contain the private parts of the host keys
1414and are used for host-based authentication. 1422and are used for host-based authentication.