ssh登錄linux服務器很慢的原因
linux下,ssh 1.2.3.4登錄Linux的時候會很慢,要過很久才顯示輸入密碼,其原因是sshd進程會根據ip去反解域名,再根據域名反解ip,然後才去登錄;
如果ip對應物域名的話就很慢了,解決方案是關閉域名解析;
找到sshd配置文件修改掉配置項“GSSAPIAuthentication”,設為no即可,見:
[html]
[root@sven ~]# cat /etc/ssh/sshd_config |grep GSSAPIAuthentication
GSSAPIAuthentication no
#GSSAPIAuthentication yes
也可以在/etc/hosts文件上加上"1.2.3.4 sven",然後再次嘗試ssh會發現秒級回顯登錄shell;