Linux:ssh连接服务器很慢

时间:2022-04-10 08:29:33

ssh连接服务器,如果很慢,可以进行如下处理:

vi /etc/ssh/sshd_config
#UseDNS yes
改成:
UseDNS no
/etc/init.d/sshd restart

-------以上方法试了没有啥效果;尝试以下配置后有效果:【可先试用ssh -v ip进行排查下,哪里打印出慢再去谷歌下】

/etc/ssh/ssh_config

GSSAPIAuthentication yes

改成:

GSSAPIAuthentication no