SSH – Resolving Duplicate Keys in Known_Hosts for Same Server

known-hostssshssh-keys

I notice my local ~/.ssh/known_hosts file has two entries for the same machine on the local LAN:

 somemachine,192.168.1.200 ssh-rsa KEY...
 somemachine.search.domain ssh-rsa KEY...

It's the same key, the second one doesn't have the IP though. Is this just a result of having a search domain and so the known_hosts file must contain the "duplicate" key?

SSH won't detect it is visiting the same machine regardless of the hostname you attempt to connect with? 'SSH 192.168.1.200' does not request to create a new known_host so could I change the known_host to:

 somemachine,somemachine.search.domain,192.168.1.200 ssh-rsa KEY...

?

Best Answer

It is because you must have used ssh somemachine and ssh somemachine.search.domain in the past, which creates 2 different entries. In ubuntu this is how my entries were created, in any case.