美文网首页
ssh 优化

ssh 优化

作者: 李方成 | 来源:发表于2017-07-19 15:34 被阅读0次

    ssh服务的配置文件为 /etc/ssh/sshd_config

    禁用密码登录

    # 启用密钥验证
    RSAAuthentication yes
    PubkeyAuthentication yes
    
    # 指定公钥数据库文件
    AuthorizedKeysFile  .ssh/authorized_keys
    
    # 禁用密码验证
    PasswordAuthentication no
    

    修改端口号

    # 将默认的 22 端口改为 其他端口号
    Port 51111 
    

    禁止空密码登录

    PermitEmptyPasswords yes
    

    优化ssh连接过慢,DNS导致的问题

    UseDNS no
    

    GSSAPIAuthentication,使ssh连接的更快

    GSSAPIAuthentication no
    

    相关文章

      网友评论

          本文标题:ssh 优化

          本文链接:https://www.haomeiwen.com/subject/hwvlkxtx.html