ssh连接报错处理
Posted 疯狂的骆驼
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ssh连接报错处理相关的知识,希望对你有一定的参考价值。
问题现象
[root]# ssh -p 10000 secure@xx.xx.xx.xx
/etc/ssh/ssh_config line 59: Unsupported option "gssapiauthentication"
处理方法:注释/etc/ssh/ssh_config文件第59行
[root]# vi /etc/ssh/ssh_config
# GSSAPIAuthentication yes
重启sshd服务
[root]# systemctl restart sshd
再次连接无报错
ssh连接报错解决
今天从一台服务器ssh远程连接另一台服务器时报错,如下:
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 RSA key sent by the remote host is
SHA256:**.
Please contact your system administrator.
Add correct host key in /root/.ssh/known_hosts to get rid of this message.
Offending RSA key in /root/.ssh/known_hosts:34
RSA host key for x.x.x.x has changed and you have requested strict checking.
Host key verification failed.
连接失败的原因,报错中说得很清楚,远程主机的key改变了,注释掉本机“/root/.ssh/known_hosts”中第34行的内容即可,重新连接会获取新的key,建立连接。
以上是关于ssh连接报错处理的主要内容,如果未能解决你的问题,请参考以下文章
SSH远程连接报错:Permission denied, please try again.的解决办法备忘
ssh连接报错:Connection refused的解决办法
Xshell SSH连接报错Socket error Event: 32 Error: 10053
ssh远程连接报错ssh_exchange_identification: Connection closed by remote host