问题描述:
云服务器重装系统之后, 使用ssh root@43.136.175.100连接服务器失败
报错
PS C:\Users\yangjin> ssh root@43.136.175.100
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!
Someone could be eavesdropping on you right now (man-in-the-middle attack)!
It is also possible that a host key has just been changed.
The fingerprint for the ED25519 key sent by the remote host is
SHA256:6kD2qF5GuTPHO0epfRE9xmhhg3S6ID/7yNpMM4bGGI4.
Please contact your system administrator.
Add correct host key in C:\\Users\\yangjin/.ssh/known_hosts to get rid of this message.
Offending ECDSA key in C:\\Users\\yangjin/.ssh/known_hosts:3
Host key for 43.136.175.100 has changed and you have requested strict checking.
Host key verification failed.
原因分析:
第一次连接ssh时候 会生成一个认证,存储客户端中的know_hosts,如果服务器地址重置或者刷新系统,就会出现以上错误打印信息。
解决方案:
使用 ssh -keygen -R 43.136.175.100
使用ssh root@IP 连接成功
ssh root@43.136.175.100
The authenticity of host '43.136.175.100 (43.136.175.100)' can't be established.
ED25519 key fingerprint is SHA256:6kD2qF5GuTPHO0epfRE9xmhhg3S6ID/7yNpMM4bGGI4.
This key is not known by any other names
Are you sure you want to continue connecting (yes/no/[fingerprint])? yes
Warning: Permanently added '43.136.175.100' (ED25519) to the list of known hosts.
root@43.136.175.100's password: