0

I use a private AMI in a cloudformation template, which also assigns a Route53 record to the new instance. Every time I connect to that hostname I get the "remote host identification has changed" and need to remove the offending key.

It seems that the host key is changed when the instance is launched, but since the AMI is only accessible by me, I'd like to setup the instance creation in a way that would allow the host key to stay the same (and get rid of that warning).

Is that possible?

4

1 に答える 1

0

ホストキーが同じままになるように(そしてその警告を取り除くように)インスタンスの作成を設定したいと思います。

それは可能ですか?

ホスト名を同じままにしますか、それともメッセージを消しますか?

簡単な答え:ホスト名はインスタンス間で同じままにはなりません。新しいインスタンスは新しいインスタンスです。ただし、SSH経由で接続している場合(指定しなかった場合)、次のようなものを使用できます。

ssh -q -o "BatchMode=yes" -o "StrictHostKeyChecking=no" -i ~/.ssh/{keypair}.pem ec2-user@{hostname}
于 2012-10-05T07:47:34.670 に答える