最近发现,工作中用到的大部分生产服务器,通过secureCRT/xshell/putty终端软件去ssh连接的时候,等待提示输入密码的时间特别久,总是需要5秒以上,经过观察发现,原来是sshd_config里面的配置导致的原因;
vim打开 /etc/ssh/sshd_config
1.找到"GSSAPIAuthentication yes" 将其修改为 "GSSAPIAuthentication no"
2.找到"UseDNS yes" 将其修改为"UseDNS no"
重启sshd服务: service sshd restart || /etc/init.d/sshd restart
此时,可以再次ssh登陆服务器查看速度是否已经变快。
本文出自 “少犟” 博客,请务必保留此出处http://xushaojie.blog.51cto.com/6205370/1675205
原文地址:http://xushaojie.blog.51cto.com/6205370/1675205