Keep SSH Alive
阿里云服务器终端老是掉线
好久没用云服务器的远程连接了,最近在没有任何配置的情况下终端老是自动断线。记录下相关配置
在文件/etc/ssh/ssh_config
中添加以下两行,增加服务器心跳检测
1
2
3
ServerAliveInterval 30
ServerAliveCountMax 20
在文件/etc/ssh/sshd_config
中添加以下两行
1
2
ClientAliveInterval 30
ClientAliveCountMax 30
重启sshd服务
1
systemctl restart sshd
总结
以上将会每隔30秒执行心跳检测(AliveInterval
),执行次数达到次数(AliveCountMax
)将会失败断线退出
This post is licensed under
CC BY 4.0
by the author.