linux之 ssh连接服务器,WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!

Posted 张冲andy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux之 ssh连接服务器,WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!相关的知识,希望对你有一定的参考价值。

[[email protected] ~]# ssh localhost
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@ 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 ECDSA key sent by the remote host is
SHA256:r86jc/Vu8phhiKKDSntetfkmksjQ606ZlUP8XNYe44U.
Please contact your system administrator.
Add correct host key in /root/.ssh/known_hosts to get rid of this message.
Offending ECDSA key in /root/.ssh/known_hosts:10
Password authentication is disabled to avoid man-in-the-middle attacks.
Keyboard-interactive authentication is disabled to avoid man-in-the-middle attacks.
Permission denied (publickey,password,keyboard-interactive).

说明: Add correct host key in /root/.ssh/known_hosts to get rid of this message.  重点在这句话

分析: ssh登录过某机器后,因某机器有变动(更换ip等),再次登录不了,报错!!!

解决过程:

[[email protected] ~]# mv /root/.ssh/known_hosts /root/.ssh/known_hosts.bak

[[email protected] ~]# ssh -o StrictHostKeyChecking=no 172.16.38.130
Warning: Permanently added ‘172.16.38.130‘ (ECDSA) to the list of known hosts.
[email protected]‘s password:
Last login: Sun Oct 1 12:02:21 2017 from 172.16.74.104

[[email protected] ~]# ssh localhost      ## 输入密码,OK!
Warning: Permanently added ‘localhost‘ (ECDSA) to the list of known hosts.
[email protected]‘s password:
Last login: Sun Oct 1 12:04:59 2017 from zk01





















以上是关于linux之 ssh连接服务器,WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!的主要内容,如果未能解决你的问题,请参考以下文章

Linux命令之远程连接ssh

linux之ssh服务(secure shell,安全外壳协议)

linux之ssh命令详解

ssh连接出现 WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!

shell编程 之 ssh远程连接

Linux 之 SSH 理解