SSH连接总是定期断掉的解决办法

作者:张华  发表于:2016-05-17
版权声明:可以任意转载,转载时请务必以超链接形式标明文章原始出处和作者信息及本版权声明

 

( http://blog.csdn.net/quqi99 )

 

 

SSH连接总是隔一段时间没有输入时就断开,解决办法如下:

 

服务端配置
sudo vi /etc/ssh/sshd_config
ClientAliveInterval 60     #服务端主动向客户端请求响应的间隔
ClientAliveCountMax 10    #服务器发出请求后客户端没有响应的次数达到一定值就自动断开
sudo restart ssh

 

客户端配置 
sudo vi /etc/ssh/ssh_config  #或~/.ssh/config

    TCPKeepAlive yes
    ServerAliveInterval 15
    ServerAliveCountMax 6
    StrictHostKeyChecking no
    ForwardAgent yes
    Compression yes

     IPQoS throughput

ssh -i IPQoS=throughput -o StrictHostKeyChecking=no -o TCPKeepAlive=yes -o ServerAliveInterval=30 ubuntu@

 

上面方式任选一种,我选客户端配置方式。

 

20200316更新, 如果ssh总是断时也得考虑使用白名单模式时是否将某些IP排除了.

 

 

你可能感兴趣的:(Linux,Application)