优化ssh连接速度

优化ssh连接速度

具体做法如下:

编辑 /etc/ssh/sshd_config 下的配置文件,修改 UseDNS 和 GSSAPIAuthentication 的值为no即可

[root@localhost ~]# vi /etc/ssh/sshd_config 
79:GSSAPIAuthentication no
115:UseDNS no
[root@localhost ~]# systemctl restart sshd

你可能感兴趣的:(ssh,linux,运维)