Linux下ssh远程连接慢解决
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux下ssh远程连接慢解决相关的知识,希望对你有一定的参考价值。
系统Centos7.2
解决方法:
1.编辑“/etc/ssh/sshd_config”文件,将DNS解析、GSSAPIAuthentication注释
[[email protected] ~]# vim /etc/ssh/sshd_config
UseDNS 禁用DNS解析
GSSAPIAuthentication 采用Kerberos验证
UseDNS no GSSAPIAuthentication no
[[email protected] ~]# service sshd restart
2.添加主机信息
[[email protected] ~]# vim /etc/hosts
10.0.0.21 compute
3.采用"ssh -v ip地址"调试
本文出自 “RSLinux” 博客,请务必保留此出处http://readshlinux.blog.51cto.com/9322509/1758532
以上是关于Linux下ssh远程连接慢解决的主要内容,如果未能解决你的问题,请参考以下文章