4
ssh:キーを自動的に受け入れます
この小さなユーティリティスクリプトを作成しました。 for h in $SERVER_LIST; do ssh $h "uptime"; done 新しいサーバーがに追加される$SERVER_LISTと、スクリプトは次のように停止します。 The authenticity of host 'blah.blah.blah (10.10.10.10)' can't be established. RSA key fingerprint is a4:d9:a4:d9:a4:d9a4:d9:a4:d9a4:d9a4:d9a4:d9a4:d9a4:d9. Are you sure you want to continue connecting (yes/no)? 私が試しましたyes: for h in $SERVER_LIST; do yes | ssh $h "uptime"; done 運がありません。 ssh新しいキーを自動的に受け入れるようにパラメーター化する方法はありますか?