Configure ssh client not to store host keys for floating hostnames #716
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Some of our hosts are redundant with keepalived in a primary/backup pattern, and we sometimes want to use them as jump hosts with ssh.
Usually ssh will proxy through the primary host, but in those rare moments where the backup is claiming the IP address, we still want to connect, even though the backup host has different ssh host keys.
Even when /etc/ssh/ssh_known_hosts is managed, the ssh client will also store keys in the user's known_hosts file, resulting in the possibility of failed ssh connections while e.g. in the middle of a reboot.
We can't configure ssh not to save the host keys, but we can configure it to write them to /dev/null. We also set the log level to ERROR because otherwise every single connection will yell that this is the first time it's seen this server and it's saving the host keys in /dev/null.