解决SSH自动断线问题
作者:互联网
一、客户端定时发送心跳
1.putty、SecureCRT、XShell都有这个功能,设置请自行搜索
2.此外在Linux下:
修改本机/etc/ssh/ssh_config
vim /etc/ssh/ssh_config
添加
ServerAliveInterval 30
ServerAliveCountMax 100
即每隔30秒,向服务器发出一次心跳。若超过100次请求,都没有发送成功,则会主动断开与服务器端的连接。
标签:30,etc,自动,SSH,心跳,断线,config,100,ssh 来源: https://www.cnblogs.com/xuyaoxiang1991/p/15601918.html