[root@localhost ~]# ssh 192.168.2.151
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@ 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 the RSA host key has just been changed.
The fingerprint for the RSA key sent by the remote host is
7e:68:8c:e5:09:9f:0d:5f:a4:47:07:a5:69:24:9a:bf.
Please contact your system administrator.
Add correct host key in /root/.ssh/known_hosts to get rid of this message.
Offending key in /root/.ssh/known_hosts:33
RSA host key for 192.168.2.151 has changed and you have requested strict checking.
Host key verification failed.
方式一:
[root@localhost ~]# vim /root/.ssh/known_hosts
方式二:
[root@localhost ~]# rm -rf /root/.ssh/known_hosts
方式三:
[root@localhost ~]# ssh-keygen -R 192.168.2.151

本文介绍了解决SSH连接时遇到的远程主机RSA密钥变更警告的方法。提供了三种解决方案:修改known_hosts文件、删除known_hosts文件以及使用ssh-keygen移除指定主机密钥。
1417

被折叠的 条评论
为什么被折叠?



