ubuntu ssh登入速度太慢的解决办法
ubuntu ssh登入速度太慢的解决办法
打开/etc/ssh/sshd_config文件
sudo gedit /etc/ssh/sshd_config
将GSSAPIAuthentication 设置未no,同时添加UsePAM no 、UseDNS no这两项
# GSSAPI options
GSSAPIAuthentication no
UsePAM no
UseDNS no
保存后重启ssh服务
sudo service ssh restart