ssh 调优参数

#PermitRootLogin no  建议禁止它远程登录能力
#PermitEmptyPasswords no  禁止空密码登录
#UseDNS no   指定sshd是否应该对远程主机名进行反向解析,以检查此主机名是否与其IP地址真实对应,
默认值为yes.不使用DNS,也会反应ssh登录慢的问题
#GSSAPIAuthentication no  解决linux之间使用ssh登录慢的问题
或者用:GSSAPIAuthentication
ssh -o =no user@server方式登录
原文地址:https://www.cnblogs.com/zhangzihong/p/6110107.html