ssh登陆远程服务器总是自动断开的问题

vim /etc/ssh/sshd_config

找到下面两行:

#ClientAliveInterval 0
#ClientAliveCountMax 3

去掉注释,改为:

ClientAliveInterval 30
ClientAliveCountMax 1800

这两行的意思分别为:

1、客户端每隔多少秒向服务发送一个心跳数据
2、客户端多少秒没有相应,服务器自动断掉连接

重启SSHD服务

service sshd restart
原文地址:https://www.cnblogs.com/super-lulu/p/11742330.html