ssh远程登陆密码正确登录失败

ssh [email protected]
[email protected]'s password:
Permission denied (publickey,gssapi-keyex,gssapi-with-mic,password).

一个一个排查

1.开始怀疑是不能root登陆,修改/etc/ssh/sshd_config

PermitRootLogin yes
PubkeyAuthentication yes

都是对的,重启sshd,systemctl restart sshd

2.怀疑是client的~/.ssh/known_hosts文件不对,中间发现偶尔可以登陆成功,登陆成功后很快就自动被断开,删除掉对应的一行,重新生成还是不行

3.telnet ip 22,也能telnet通

4.ping www.baidu.com,发现偶尔可以ping通,偶尔平不通

在网上搜了一下,发现是ip被占用了

你可能感兴趣的:(ssh远程登陆密码正确登录失败)