标签:linux ssh连接慢
系统Centos7.2
解决方法:
1.编辑“/etc/ssh/sshd_config”文件,将DNS解析、GSSAPIAuthentication注释
[root@compute ~]# vim /etc/ssh/sshd_config
UseDNS 禁用DNS解析
GSSAPIAuthentication 采用Kerberos验证
UseDNS no GSSAPIAuthentication no
[root@compute ~]# service sshd restart
2.添加主机信息
[root@compute ~]# vim /etc/hosts
10.0.0.21 compute
3.采用"ssh -v ip地址"调试
本文出自 “RSLinux” 博客,请务必保留此出处http://readshlinux.blog.51cto.com/9322509/1758532
标签:linux ssh连接慢
原文地址:http://readshlinux.blog.51cto.com/9322509/1758532