登录sshd时发现等待的时间很长,怀疑是 dns 反向解析的问题,于是编辑 /etc/ssh/sshd_config把
UseDNS yes
改成
UseDNS no
重启sshd服务,登录还是很慢。于是在运行登录命令时打开消息输出选项
ssh -vvv myusername@myhost
发现卡在
...
debug1: Next authentication method: gssapi-with-mic
...
于是把 /etc/ssh/sshd_config里的
GSSAPIAuthentication yes
改成
GSSAPIAuthentication no
重启sshd服务,问题解决。
没有评论:
发表评论