Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> Linux中通過SSH跳轉服務器報 Host key verification failed問題解決

Linux中通過SSH跳轉服務器報 Host key verification failed問題解決

日期:2017/2/7 14:25:29      編輯:Linux教程
 

另外一台服務器新裝了系統,結果通過原有的服務器進行ssh跳轉的時候報錯,後來得出原因是因為ssh會把你每個你訪問過計算機的公鑰(public key)都記錄在~/.ssh/known_hosts。當下次訪問相同計算機時,OpenSSH會核對公鑰。如果公鑰不同,OpenSSH會發出警告,避免你受到DNS Hijack之類的攻擊。
知道原因後便開始著手解決。


報錯信息如下:

@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@    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
23:00:20:83:de:02:95:f1:e3:34:be:57:3f:cf:2c:e7.
Please contact your system administrator.
Add correct host key in /home/adm/.ssh/known_hosts to get rid of this message.
Offending key in /home/adm/.ssh/known_hosts:8
RSA host key for localhost has changed and you have requested strict checking.
Host key verification failed.

解決方案

如果是偶爾出現,可用此方法即可:

ssh-keygen -R 目標IP

如果是純內網下經常碰到,可以這樣:

vi /etc/ssh/ssh_config

修改裡面的值:

StrictHostKeyChecking = no

至此解決。

Copyright © Windows教程網 All Rights Reserved