1. 程式人生 > >Xshell連線很慢的解決辦法

Xshell連線很慢的解決辦法

ssh的服務端在連線時會自動檢測dns環境是否一致導致的,修改為不檢測即可,操作如下:

修改檔案:/etc/ssh/sshd_config

UseDNS yes  --->預設為註釋行

UseDNS no  --->把註釋開啟,改為no,然後重啟ssh服務即可

直接執行
/etc/rc.d/init.d/ssh restart
或者
sevice ssh restart
/etc/init.d/sshd restart
restart
包括了stopstart

[[email protected] ~]# /etc/init.d/sshd restart
Stopping sshd:                                             [  OK  ]
Starting sshd:                                             [  OK  ]
[

[email protected] ~]#

如果是linux 7的話

[[email protected] ~]#  systemctl restart   sshd
[[email protected] ~]# 

果然快了很多

/etc/nsswitch.conf hosts 把dns刪除