NAME
SYNOPSIS
k -words
DESCRIPTION
is a utility for gathering the public ssh host keys of a number of
hosts.
It was designed to aid in building and verifying
files.
provides a minimal interface suitable for use by shell and perl
scripts.
uses non-blocking socket I/O to contact as many hosts as possible in
parallel, so it is very efficient.
The keys from a domain of 1,000
hosts can be collected in tens of seconds, even when some of those
hosts are down or do not run ssh.
For scanning, one does not need
login access to the machines that are being scanned, nor does the
scanning process involve any encryption.
The options are as follows:
- 4
Forces
to use IPv4 addresses only.
- 6
Forces
to use IPv6 addresses only.
- file
Read hosts or
pairs from this file, one per line.
If
is supplied instead of a filename,
will read hosts or
pairs from the standard input.
H
Hash all hostnames and addresses in the output.
Hashed names may be used normally by
and
but they do not reveal identifying information should the file's contents
be disclosed.
port
Port to connect to on the remote host.
timeout
Set the timeout for connection attempts.
If
seconds have elapsed since a connection was initiated to a host or since the
last time anything was read from that host, then the connection is
closed and the host in question considered unavailable.
Default is 5 seconds.
type
Specifies the type of the key to fetch from the scanned hosts.
The possible values are
for protocol version 1 and
or
for protocol version 2.
Multiple values may be specified by separating them with commas.
The default is
v
Verbose mode.
Causes
to print debugging messages about its progress.
SECURITY
If an ssh_known_hosts file is constructed using
without verifying the keys, users will be vulnerable to
attacks.
On the other hand, if the security model allows such a risk,
can help in the detection of tampered keyfiles or man in the middle
attacks which have begun after the ssh_known_hosts file was created.
FILES
1.2.3.4,1.2.4.4 name.my.domain,name,n.my.domain,n,1.2.3.4,1.2.4.4
host-or-namelist bits exponent modulus
host-or-namelist keytype base64-encoded-key
Where
is either
or
EXAMPLES
Print the
host key for machine
Find all hosts from the file
which have new or different keys from those in the sorted file
$ ssh-keyscan -t rsa,dsa -f ssh_hosts | sort -u - ssh_known_hosts | diff ssh_known_hosts -
SEE ALSO
AUTHORS
wrote the initial version, and
added support for protocol version 2.
BUGS
It generates "Connection closed by remote host" messages on the consoles
of all the machines it scans if the server is older than version 2.9.
This is because it opens a connection to the ssh port, reads the public
key, and drops the connection as soon as it gets the key.