1.修改配置文件
bash
cp /etc/ssh/sshd_config /tmp/
vi /etc/ssh/sshd_config
2.将79行和115行的yes修改为no,最后:wq
保存退出
- 79 行:GSSAPIAuthentication no
- 115行: UseDNS no
3.重启ssh服务
bash
systemctl restart sshd
4.若修改失败,还原配置文件
bash
cp /tmp/sshd_config /etc/ssh/sshd_config
systemctl restart sshd