使用 SSH 登录 CentOS 时,总是比登录 Ubuntu 等系统慢。解决方法就是如下设置。本文以 CentOS 7 为例。

修改 SSH 配置

  1. 登录系统

  2. 打开 SSH 配置文件:

    1
    vi /etc/ssh/sshd_config
  3. 修改 UseDNS 为如下

    1
    UseDNS no
  4. 修改 GSSAPIAuthentication 为如下

    1
    GSSAPIAuthentication no
  5. 重启 SSHD 服务

    1
    2
    3
    service sshd restart
    # 或者
    systemctl restart sshd

参考链接

  1. centos ssh连接登录慢解决
  2. centos7解决ssh登录速度慢的问题