2011年08月03日
クラスタのセットアップで ssh の hostkey verification が面倒なので回避したい
- 2011-08-03 (Wed)
- ソフトウェア ( Linux/coLinux )
http://linuxcommando.blogspot.com/2008/10/how-to-disable-ssh-host-key-checking.html を見てみたら,
ssh user@host -o StrictHostKeyChecking=no
とかやれば初めてのホストでも
The authenticity of host 'testhost' can't be established. RSA key fingerprint is ......... Are you sure you want to continue connecting (yes/no)?
が出ないでくれるので助かると.なるほど.さらに -o UserKnownHostsFile=/dev/null をつけてあげると hostkey が変わっても全く気にしないモードの出来上がり.
/config に
StrictHostKeyChecking no UserKnownHostsFile=/dev/null
とか書いておくと不幸せになるのかも知れない.
- Comments: 0
- TrackBack (Close): -