SSH连接卡顿
1. 关闭DNS反向解析。在linux中,默认就是开启了SSH的反向DNS解析,这个会消耗大量时间,因此需要关闭。# vi /etc/ssh/sshd_configUseDNS=no在配置文件中,虽然UseDNS yes是被注释的,但默认开关就是yes2. 关闭SERVER上的GSS认证。在authentication gssapi-with-mic有很大的可能出现问题,因此...
·
一、 修改SSH配置文件
# 编辑SSH配置文件
vim /etc/ssh/sshd_config
# Linux默认开启反向DNS解析,会比较耗时,需要关闭
UseDNS=no
# 关闭GSS认证
GSSAPIAuthentication no
# 重启SSH服务
sudo systemctl restart sshd.service
二、定位SSH连接卡顿的位置
[xiao@localhost ~]$ ssh -v xiao@192.168.174.149
OpenSSH_5.3p1, OpenSSL 1.0.1e-fips 11 Feb 2013
...
debug1: No valid Key exchange context
debug1: Next authentication method: gssapi-with-mic
debug1: Unspecified GSS failure. Minor code may provide more information
Cannot determine realm for numeric host address
debug1: Unspecified GSS failure. Minor code may provide more information
Cannot determine realm for numeric host address
根据上面输出的日志:ssh链接卡在GSS认证那一步
更多推荐
已为社区贡献1条内容
所有评论(0)