分析
如果以前成功密码 SSH 登录过目标服务器,那启用 SSH 的 ChallengeResponseAuthentication 参数可能会影响 PasswordAuthentication 参数的效果
解决方法
# vim /etc/ssh/sshd_conf
将其中的:
......
# ChallengeResponseAuthentication yes
......
修改为:
......
ChallengeResponseAuthentication no
......