|
NAMEssh-keyscan - gather SSH public keys from serversSYNOPSISssh-keyscan [-46cDHv] [-f file] [-p port] [-T timeout] [-t type] [host | addrlist namelist]DESCRIPTIONssh-keyscan is a utility for gathering the public SSH host keys of a number of hosts. It was designed to aid in building and verifying ssh_known_hosts files, the format of which is documented in sshd(8). ssh-keyscan provides a minimal interface suitable for use by shell and perl scripts.ssh-keyscan 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 sshd(8). 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:
If an ssh_known_hosts file is constructed using ssh-keyscan without verifying the keys, users will be vulnerable to maninthemiddle attacks. On the other hand, if the security model allows such a risk, ssh-keyscan 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/usr/local/etc/ssh/ssh_known_hostsEXAMPLESPrint the RSA host key for machine hostname :Dl $ ssh-keyscan -t rsa hostname Find all hosts from the file ssh_hosts which have new or different keys from those in the sorted file ssh_known_hosts: $ ssh-keyscan -t rsa,dsa,ecdsa,ed25519 -f ssh_hosts | \
SEE ALSOssh(1), sshd(8)Using DNS to Securely Publish Secure Shell (SSH) Key Fingerprints, RFC 4255, 2006. AUTHORS-nosplitDavid Mazieres <Mt dm@lcs.mit.edu> wrote the initial version, and Wayne Davison <Mt wayned@users.sourceforge.net> added support for protocol version 2.
Visit the GSP FreeBSD Man Page Interface. |