解决linux服务器ssh连接自动超时断开问题

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

平时开发中使用xshell、SecureCRTPortable等工具连接服务器的时候,一段时间不操作,连接就会自动断开,需要重连,比较麻烦。下面通过修改超时时间来解决这个问题

第一步:修改/etc/profile

新增export TMOUT=1000000 (以秒为单位) 

source一下,使其立即生效

source /etc/profile

第二步:修改/etc/ssh/sshd_config

在/etc/ssh/sshd_config中加入:

KeepAlive yes

ClientAliveInterval 100

修改完成之后重启一下sshd服务,重连即可

service sshd restart

 

转载于:https://my.oschina.net/lyyjason/blog/1839799

你可能感兴趣的:(解决linux服务器ssh连接自动超时断开问题)