How can I automate adding entries to .ssh/known_hosts?
You can use the below option to not have to enter yes
for each host with newer versions of ssh
:
ssh -o 'StrictHostKeyChecking accept-new' host
ssh-keyscan
will check, but not verify, a remote host key fingerprint. Iterate through the host list and append to ~/.ssh/known_hosts
:
while read host; do
if entry=$(ssh-keyscan $host 2> /dev/null); then
echo "$entry" >> ~/.ssh/known_hosts
fi
done < hostlist.txt