mirror of https://github.com/jkjoy/sunpeiwen.git
726 B
726 B
layout | cid | title | slug | date | updated | status | author | categories | tags | dtMode | radioPostImg | abbrlink | excerpt | icon | thumbnail | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
post | 342 | centos7 ssh连接慢的解决方法 | solution-to-slow-ssh-connection-of-centos-7 | 2022/08/12 16:52:00 | 2022/08/12 16:55:00 | publish | 老孙 | 分享 |
|
0 | none | 58592 | ai: 这篇文章介绍了如何通过编辑配置文件来优化SSH服务的设置。具体步骤包括禁用DNS解析和GSSAPI认证,并展示了如何保存更改并重启服务以使设置生效。 |
vim /etc/ssh/sshd_config
按i编辑插入
找到
UseDNS
去掉前面的#号 改为 no
GSSAPIAuthentication
改为 no
然后:wq
保存退出
systemctl restart sshd
重启