summaryrefslogtreecommitdiff
path: root/ssh-keyscan.1
diff options
context:
space:
mode:
authordjm <djm>2014-04-20 03:00:51 +0000
committerdjm <djm>2014-04-20 03:00:51 +0000
commit335b7816d96d7e56e80c2bd2d3b31d98e44413b7 (patch)
tree44ea95f98d05c5f1fb251f125d0f44e27fcb3f3a /ssh-keyscan.1
parent3872df96768b894fe3d998b5748db3f2baf55532 (diff)
downloadopenssh-335b7816d96d7e56e80c2bd2d3b31d98e44413b7.tar.gz
- naddy@cvs.openbsd.org 2014/03/12 13:06:59
[ssh-keyscan.1] scan for Ed25519 keys by default too
Diffstat (limited to 'ssh-keyscan.1')
-rw-r--r--ssh-keyscan.115
1 files changed, 8 insertions, 7 deletions
diff --git a/ssh-keyscan.1 b/ssh-keyscan.1
index dae4fd9f..5c32ea9c 100644
--- a/ssh-keyscan.1
+++ b/ssh-keyscan.1
@@ -1,4 +1,4 @@
-.\" $OpenBSD: ssh-keyscan.1,v 1.34 2014/01/28 14:13:39 jmc Exp $
+.\" $OpenBSD: ssh-keyscan.1,v 1.35 2014/03/12 13:06:59 naddy Exp $
.\"
.\" Copyright 1995, 1996 by David Mazieres <dm@lcs.mit.edu>.
.\"
@@ -6,7 +6,7 @@
.\" permitted provided that due credit is given to the author and the
.\" OpenBSD project by leaving this copyright notice intact.
.\"
-.Dd $Mdocdate: January 28 2014 $
+.Dd $Mdocdate: March 12 2014 $
.Dt SSH-KEYSCAN 1
.Os
.Sh NAME
@@ -98,9 +98,10 @@ or
for protocol version 2.
Multiple values may be specified by separating them with commas.
The default is to fetch
-.Dq rsa
+.Dq rsa ,
+.Dq ecdsa ,
and
-.Dq ecdsa
+.Dq ed25519
keys.
.It Fl v
Verbose mode.
@@ -124,12 +125,12 @@ Input format:
1.2.3.4,1.2.4.4 name.my.domain,name,n.my.domain,n,1.2.3.4,1.2.4.4
.Ed
.Pp
-Output format for rsa1 keys:
+Output format for RSA1 keys:
.Bd -literal
host-or-namelist bits exponent modulus
.Ed
.Pp
-Output format for rsa, dsa and ecdsa keys:
+Output format for RSA, DSA, ECDSA, and ED25519 keys:
.Bd -literal
host-or-namelist keytype base64-encoded-key
.Ed
@@ -158,7 +159,7 @@ Find all hosts from the file
which have new or different keys from those in the sorted file
.Pa ssh_known_hosts :
.Bd -literal
-$ ssh-keyscan -t rsa,dsa,ecdsa -f ssh_hosts | \e
+$ ssh-keyscan -t rsa,dsa,ecdsa,ed25519 -f ssh_hosts | \e
sort -u - ssh_known_hosts | diff ssh_known_hosts -
.Ed
.Sh SEE ALSO