开发者

EC2 SSH problem authenticating

开发者 https://www.devze.com 2022-12-21 11:02 出处:网络
I set up an ec2 instance. In the security group, I opened up SSH \'tcp\' port 80 for 0.0.0.0/0 (all open for testing purposes). I associated the instance with a 开发者_运维问答private key. I downloade

I set up an ec2 instance. In the security group, I opened up SSH 'tcp' port 80 for 0.0.0.0/0 (all open for testing purposes). I associated the instance with a 开发者_运维问答private key. I downloaded the key and passed it while ssh-ing, but the RSA isn't authenticating. Any ideas?

ssh -i mykey.pem root@mydnsinfo.amazonaws.com 

The authenticity of host 'mydns.amazonaws.com(IP)' can't be established. 
RSA key finger print is FINGERPRINT 
Are you sure you want to continue connecting (yes/no)? 

Thank you in advance!!!


This is normal. Your SSH complains about the unknown host key. It always does when connecting to the new host for the first time. Just answer yes, connect and try again. It should not complain for the second time.

The private key that you downloaded is for your 'root' account not for the whole host.


Securely configured EC2 instances will include the server SSH key fingerprint in the console output that you can access over SSL before you try to connect over SSH. Then when you connect over SSH you need to make sure the fingerprint matches the console. You MUST do this to be able to securely connect to public EC2 instances.

Public EC2 instances generate new server SSH key on each boot. This means that unless you do what I described above, you will be faced with unknown host key warning a lot, and if you ignore that warning you will be throwing security out of the door; you just never know where you will be connecting to.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号