美文网首页
centOS ssh 连接一段时间,不操作自动断开连接

centOS ssh 连接一段时间,不操作自动断开连接

作者: 我是何先生 | 来源:发表于2018-09-07 19:57 被阅读23次

    解决步骤

    • 修改 /etc/ssh/sshd_config 文件
    • 将 #ClientAliveInterval 0 和 #ClientAliveCountMax 3 修改为 ClientAliveInterval 60 和 ClientAliveCountMax 86400
    • 重启 sshd

    涉及命令

    • vi /etc/ssh/sshd_config
    • /#ClientAliveInterval 0(vim 模式下查询字符串)
    • /bin/systemctl restart sshd.service

    备注: ClientAliveInterval指定服务器向客户端请求消息的时间间隔,默认是0,不发送。ClientAliveCountMax 表示服务器发出的请求客户端没有回应达到最大次数后断开连接

    相关文章

      网友评论

          本文标题:centOS ssh 连接一段时间,不操作自动断开连接

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