Darren Tucker | 34e314d | 2010-01-08 17:03:46 +1100 | [diff] [blame] | 1 | .\" $OpenBSD: ssh-keyscan.1,v 1.27 2009/10/28 16:38:18 reyk Exp $ |
Ben Lindstrom | b22c2b8 | 2001-03-05 06:50:47 +0000 | [diff] [blame] | 2 | .\" |
| 3 | .\" Copyright 1995, 1996 by David Mazieres <dm@lcs.mit.edu>. |
| 4 | .\" |
| 5 | .\" Modification and redistribution in source and binary forms is |
| 6 | .\" permitted provided that due credit is given to the author and the |
Ben Lindstrom | a238f6e | 2001-06-09 01:30:39 +0000 | [diff] [blame] | 7 | .\" OpenBSD project by leaving this copyright notice intact. |
Ben Lindstrom | 36579d3 | 2001-01-29 07:39:26 +0000 | [diff] [blame] | 8 | .\" |
Darren Tucker | 34e314d | 2010-01-08 17:03:46 +1100 | [diff] [blame] | 9 | .Dd $Mdocdate: October 28 2009 $ |
Ben Lindstrom | b22c2b8 | 2001-03-05 06:50:47 +0000 | [diff] [blame] | 10 | .Dt SSH-KEYSCAN 1 |
Ben Lindstrom | b6434ae | 2000-12-05 01:15:09 +0000 | [diff] [blame] | 11 | .Os |
| 12 | .Sh NAME |
| 13 | .Nm ssh-keyscan |
| 14 | .Nd gather ssh public keys |
| 15 | .Sh SYNOPSIS |
| 16 | .Nm ssh-keyscan |
Damien Miller | 495dca3 | 2003-04-01 21:42:14 +1000 | [diff] [blame] | 17 | .Bk -words |
Damien Miller | 9a2fdbd | 2005-03-02 12:04:01 +1100 | [diff] [blame] | 18 | .Op Fl 46Hv |
| 19 | .Op Fl f Ar file |
Ben Lindstrom | 325e70c | 2001-08-06 22:41:30 +0000 | [diff] [blame] | 20 | .Op Fl p Ar port |
| 21 | .Op Fl T Ar timeout |
| 22 | .Op Fl t Ar type |
Darren Tucker | 34e314d | 2010-01-08 17:03:46 +1100 | [diff] [blame] | 23 | .Op Fl V Ar rdomain |
Ben Lindstrom | 325e70c | 2001-08-06 22:41:30 +0000 | [diff] [blame] | 24 | .Op Ar host | addrlist namelist |
Damien Miller | c1719f7 | 2008-11-03 19:27:07 +1100 | [diff] [blame] | 25 | .Ar ... |
Damien Miller | 495dca3 | 2003-04-01 21:42:14 +1000 | [diff] [blame] | 26 | .Ek |
Ben Lindstrom | b6434ae | 2000-12-05 01:15:09 +0000 | [diff] [blame] | 27 | .Sh DESCRIPTION |
| 28 | .Nm |
| 29 | is a utility for gathering the public ssh host keys of a number of |
Damien Miller | 495dca3 | 2003-04-01 21:42:14 +1000 | [diff] [blame] | 30 | hosts. |
| 31 | It was designed to aid in building and verifying |
Ben Lindstrom | b6434ae | 2000-12-05 01:15:09 +0000 | [diff] [blame] | 32 | .Pa ssh_known_hosts |
| 33 | files. |
| 34 | .Nm |
| 35 | provides a minimal interface suitable for use by shell and perl |
| 36 | scripts. |
| 37 | .Pp |
| 38 | .Nm |
| 39 | uses non-blocking socket I/O to contact as many hosts as possible in |
Damien Miller | 495dca3 | 2003-04-01 21:42:14 +1000 | [diff] [blame] | 40 | parallel, so it is very efficient. |
| 41 | The keys from a domain of 1,000 |
Ben Lindstrom | b6434ae | 2000-12-05 01:15:09 +0000 | [diff] [blame] | 42 | hosts can be collected in tens of seconds, even when some of those |
Damien Miller | 495dca3 | 2003-04-01 21:42:14 +1000 | [diff] [blame] | 43 | hosts are down or do not run ssh. |
| 44 | For scanning, one does not need |
Ben Lindstrom | 594e203 | 2001-09-12 18:35:30 +0000 | [diff] [blame] | 45 | login access to the machines that are being scanned, nor does the |
| 46 | scanning process involve any encryption. |
Ben Lindstrom | 0b5afb9 | 2001-08-06 22:01:29 +0000 | [diff] [blame] | 47 | .Pp |
| 48 | The options are as follows: |
Ben Lindstrom | b6434ae | 2000-12-05 01:15:09 +0000 | [diff] [blame] | 49 | .Bl -tag -width Ds |
Damien Miller | 9a2fdbd | 2005-03-02 12:04:01 +1100 | [diff] [blame] | 50 | .It Fl 4 |
| 51 | Forces |
| 52 | .Nm |
| 53 | to use IPv4 addresses only. |
| 54 | .It Fl 6 |
| 55 | Forces |
| 56 | .Nm |
| 57 | to use IPv6 addresses only. |
| 58 | .It Fl f Ar file |
| 59 | Read hosts or |
| 60 | .Pa addrlist namelist |
| 61 | pairs from this file, one per line. |
| 62 | If |
| 63 | .Pa - |
| 64 | is supplied instead of a filename, |
| 65 | .Nm |
| 66 | will read hosts or |
| 67 | .Pa addrlist namelist |
| 68 | pairs from the standard input. |
Damien Miller | db7b817 | 2005-03-01 21:48:03 +1100 | [diff] [blame] | 69 | .It Fl H |
| 70 | Hash all hostnames and addresses in the output. |
| 71 | Hashed names may be used normally by |
| 72 | .Nm ssh |
| 73 | and |
| 74 | .Nm sshd , |
| 75 | but they do not reveal identifying information should the file's contents |
| 76 | be disclosed. |
Ben Lindstrom | 325e70c | 2001-08-06 22:41:30 +0000 | [diff] [blame] | 77 | .It Fl p Ar port |
| 78 | Port to connect to on the remote host. |
Ben Lindstrom | 8d066fb | 2001-09-12 17:06:13 +0000 | [diff] [blame] | 79 | .It Fl T Ar timeout |
Damien Miller | 495dca3 | 2003-04-01 21:42:14 +1000 | [diff] [blame] | 80 | Set the timeout for connection attempts. |
| 81 | If |
Ben Lindstrom | b6434ae | 2000-12-05 01:15:09 +0000 | [diff] [blame] | 82 | .Pa timeout |
| 83 | seconds have elapsed since a connection was initiated to a host or since the |
| 84 | last time anything was read from that host, then the connection is |
Damien Miller | 495dca3 | 2003-04-01 21:42:14 +1000 | [diff] [blame] | 85 | closed and the host in question considered unavailable. |
| 86 | Default is 5 seconds. |
Ben Lindstrom | 325e70c | 2001-08-06 22:41:30 +0000 | [diff] [blame] | 87 | .It Fl t Ar type |
Ben Lindstrom | 8d066fb | 2001-09-12 17:06:13 +0000 | [diff] [blame] | 88 | Specifies the type of the key to fetch from the scanned hosts. |
Ben Lindstrom | 325e70c | 2001-08-06 22:41:30 +0000 | [diff] [blame] | 89 | The possible values are |
| 90 | .Dq rsa1 |
| 91 | for protocol version 1 and |
| 92 | .Dq rsa |
| 93 | or |
| 94 | .Dq dsa |
| 95 | for protocol version 2. |
| 96 | Multiple values may be specified by separating them with commas. |
| 97 | The default is |
Damien Miller | bacb7fb | 2008-05-19 14:56:33 +1000 | [diff] [blame] | 98 | .Dq rsa . |
Darren Tucker | 34e314d | 2010-01-08 17:03:46 +1100 | [diff] [blame] | 99 | .It Fl V Ar rdomain |
| 100 | Set the routing domain. |
Ben Lindstrom | 325e70c | 2001-08-06 22:41:30 +0000 | [diff] [blame] | 101 | .It Fl v |
| 102 | Verbose mode. |
| 103 | Causes |
| 104 | .Nm |
| 105 | to print debugging messages about its progress. |
Ben Lindstrom | d26dcf3 | 2001-01-06 15:18:16 +0000 | [diff] [blame] | 106 | .El |
Ben Lindstrom | 0b5afb9 | 2001-08-06 22:01:29 +0000 | [diff] [blame] | 107 | .Sh SECURITY |
Darren Tucker | ffe88e1 | 2006-10-18 07:53:06 +1000 | [diff] [blame] | 108 | If an ssh_known_hosts file is constructed using |
Ben Lindstrom | 0b5afb9 | 2001-08-06 22:01:29 +0000 | [diff] [blame] | 109 | .Nm |
Ben Lindstrom | 594e203 | 2001-09-12 18:35:30 +0000 | [diff] [blame] | 110 | without verifying the keys, users will be vulnerable to |
Darren Tucker | 3ca4508 | 2004-07-17 16:13:15 +1000 | [diff] [blame] | 111 | .Em man in the middle |
Ben Lindstrom | 0b5afb9 | 2001-08-06 22:01:29 +0000 | [diff] [blame] | 112 | attacks. |
Ben Lindstrom | 594e203 | 2001-09-12 18:35:30 +0000 | [diff] [blame] | 113 | On the other hand, if the security model allows such a risk, |
Ben Lindstrom | 0b5afb9 | 2001-08-06 22:01:29 +0000 | [diff] [blame] | 114 | .Nm |
Ben Lindstrom | 594e203 | 2001-09-12 18:35:30 +0000 | [diff] [blame] | 115 | can help in the detection of tampered keyfiles or man in the middle |
| 116 | attacks which have begun after the ssh_known_hosts file was created. |
Ben Lindstrom | b6434ae | 2000-12-05 01:15:09 +0000 | [diff] [blame] | 117 | .Sh FILES |
Ben Lindstrom | b6434ae | 2000-12-05 01:15:09 +0000 | [diff] [blame] | 118 | .Pa Input format: |
Ben Lindstrom | 325e70c | 2001-08-06 22:41:30 +0000 | [diff] [blame] | 119 | .Bd -literal |
Ben Lindstrom | b6434ae | 2000-12-05 01:15:09 +0000 | [diff] [blame] | 120 | 1.2.3.4,1.2.4.4 name.my.domain,name,n.my.domain,n,1.2.3.4,1.2.4.4 |
Ben Lindstrom | 325e70c | 2001-08-06 22:41:30 +0000 | [diff] [blame] | 121 | .Ed |
Ben Lindstrom | b6434ae | 2000-12-05 01:15:09 +0000 | [diff] [blame] | 122 | .Pp |
Ben Lindstrom | 325e70c | 2001-08-06 22:41:30 +0000 | [diff] [blame] | 123 | .Pa Output format for rsa1 keys: |
| 124 | .Bd -literal |
Ben Lindstrom | b6434ae | 2000-12-05 01:15:09 +0000 | [diff] [blame] | 125 | host-or-namelist bits exponent modulus |
Ben Lindstrom | 325e70c | 2001-08-06 22:41:30 +0000 | [diff] [blame] | 126 | .Ed |
| 127 | .Pp |
| 128 | .Pa Output format for rsa and dsa keys: |
| 129 | .Bd -literal |
| 130 | host-or-namelist keytype base64-encoded-key |
| 131 | .Ed |
| 132 | .Pp |
| 133 | Where |
| 134 | .Pa keytype |
| 135 | is either |
| 136 | .Dq ssh-rsa |
| 137 | or |
Damien Miller | 9350635 | 2003-05-14 13:46:33 +1000 | [diff] [blame] | 138 | .Dq ssh-dss . |
Ben Lindstrom | b6434ae | 2000-12-05 01:15:09 +0000 | [diff] [blame] | 139 | .Pp |
Damien Miller | 05eda43 | 2002-02-10 18:32:28 +1100 | [diff] [blame] | 140 | .Pa /etc/ssh/ssh_known_hosts |
Damien Miller | f1ce505 | 2003-06-11 22:04:39 +1000 | [diff] [blame] | 141 | .Sh EXAMPLES |
| 142 | Print the |
Damien Miller | b2c17d4 | 2009-01-28 16:18:03 +1100 | [diff] [blame] | 143 | .Pa rsa |
Damien Miller | f1ce505 | 2003-06-11 22:04:39 +1000 | [diff] [blame] | 144 | host key for machine |
| 145 | .Pa hostname : |
| 146 | .Bd -literal |
| 147 | $ ssh-keyscan hostname |
| 148 | .Ed |
| 149 | .Pp |
| 150 | Find all hosts from the file |
| 151 | .Pa ssh_hosts |
| 152 | which have new or different keys from those in the sorted file |
| 153 | .Pa ssh_known_hosts : |
| 154 | .Bd -literal |
| 155 | $ ssh-keyscan -t rsa,dsa -f ssh_hosts | \e |
| 156 | sort -u - ssh_known_hosts | diff ssh_known_hosts - |
| 157 | .Ed |
| 158 | .Sh SEE ALSO |
| 159 | .Xr ssh 1 , |
| 160 | .Xr sshd 8 |
| 161 | .Sh AUTHORS |
Darren Tucker | 28e8e59 | 2005-10-03 18:20:28 +1000 | [diff] [blame] | 162 | .An -nosplit |
Damien Miller | f1ce505 | 2003-06-11 22:04:39 +1000 | [diff] [blame] | 163 | .An David Mazieres Aq dm@lcs.mit.edu |
| 164 | wrote the initial version, and |
| 165 | .An Wayne Davison Aq wayned@users.sourceforge.net |
| 166 | added support for protocol version 2. |
Ben Lindstrom | b6434ae | 2000-12-05 01:15:09 +0000 | [diff] [blame] | 167 | .Sh BUGS |
| 168 | It generates "Connection closed by remote host" messages on the consoles |
Ben Lindstrom | 325e70c | 2001-08-06 22:41:30 +0000 | [diff] [blame] | 169 | of all the machines it scans if the server is older than version 2.9. |
Ben Lindstrom | b6434ae | 2000-12-05 01:15:09 +0000 | [diff] [blame] | 170 | This is because it opens a connection to the ssh port, reads the public |
| 171 | key, and drops the connection as soon as it gets the key. |