How do I delete ALL SSH known hosts?
I've managed many VPSs before and I want to delete these keys.
How do I delete ALL SSH known hosts?
I've managed many VPSs before and I want to delete these keys.
First of all you should remember to verify ssh key finger prints when connecting to a remote computer for the first time, to avoid MITM attacks.
Having said that, first making a backup, and then removing all previous ssh known hosts is a matter of doing this on your local computer :
cp -av ~/.ssh/known_hosts ~/.ssh/known_hosts-old
rm ~/.ssh/known_hosts
The known_hosts file will be created again after you completely initiated the first new ssh session.
mv
is a one-liner and it offers speed and atomicity. On the contrary, a 2-step approach of cp
and rm
is a File Overwrite Strategy which gives more control over how overwrites are handled.
– Phemelo Khetho
Nov 16 '23 at 11:51