Centos 7 SSH连接超时自动断开的解决方案
2018/09/13 16:45 ArthurXF
最近在Centos 7 上安装软件,一会不看就自动断开,很是讨厌,故调整下面的设置,让其长时间保持连线。
1.编辑sshd配置文件
2.重启sshd服务
这样连接centos7长时间不操作也不会连接超时中断了。
1.编辑sshd配置文件
# vi /etc/ssh/sshd_config
找到 #ClientAliveInterval 0 #ClientAliveCountMax 3
修改为 ClientAliveInterval 60 ClientAliveCountMax 3
找到 #ClientAliveInterval 0 #ClientAliveCountMax 3
修改为 ClientAliveInterval 60 ClientAliveCountMax 3
2.重启sshd服务
# systemctl restart sshd
这样连接centos7长时间不操作也不会连接超时中断了。