A little script: nssh
(Once again it's been a while since the last little script.)
One of the things that we do reasonably often around here is install and reinstall servers. When we do this, the server's SSH host key changes (either permanently or temporarily until we can restore its canonical key), and of course then ssh'ing in to the newly reinstalled server complains about host key mismatches.
A while back I got tired of having to deal with this by hand, so I
decided to automate it. Enter a script that I call nssh
:
#!/bin/sh # ssh with no host keys exec ssh -o 'UserKnownHosts File /dev/null' \ -o 'PubkeyAuthentication no' \ -o 'StrictHostKeyChecking no' "$@"
(Okay, my script actually doesn't explicitly set StrictHostKeyChecking
because I long ago made it a default in my .ssh/config, on the grounds
that this was what I was doing by hand anyways; I always just said 'yes'
when ssh
prompted me. I have a number of odd behaviors with ssh.)
This is a trivial little script but it's turned out to be very handy, like others before it. Tiny or not, it eliminates an irritating bit of make-work and that makes me happy.
(The need for this script while dealing with machines being reinstalled is an artifact of how our install system works. A more sophisticated install system could arrange for the correct canonical host keys to be installed before you needed to ssh to the new machine.)
Comments on this page:
|
|