参考文章:http://www.cnblogs.com/xuxm2007/archive/2011/04/21/2023611.html
http://yunwei.blog.51cto.com/381136/432672
http://www.cnblogs.com/aoyihuashao/p/3298950.html
公司网络加固,导致CRT连接总是断开,网上查询的到如下两种方式来设置SSH 连接时间。
第一种方式成功解决问题,第二种方式是网上推荐最多的,但我这边不知哪里改错了不适用,也暂且记下,供以后参考使用。
第一种解决方式:
经常使用securecrt的时候会有timed out waiting for input: auto-logout,然后会话退出了
解决办法,有两个:
1.修改
vim /etc/profile
TMOUT=60 #or the number of seconds you want
. /etc/profile
echo $TMOUT
2.在.bash_profile 文件中添加
export TMOUT=60
第二种解决方式:
方法一、
1、 配置服务器
#vi /etc/ssh/sshd_config
1)找到 ClientAliveInterval参数,如果没有就自己加一行数值是秒,比如你设置为120 ,则是2分钟
ClientAliveInterval 120
2)ClientAliveCountMax
指如果发现客户端没有相应,则判断一次超时,这个参数设置允许超时的次数。如3 、5等自定义。
修改两项参数后如下:
ClientAliveInterval 120
ClientAliveCountMax 0 ###在不允许超时次数
重新加载sshd服务。执行service sshd reload
方法二、
找到所在用户的.ssh目录,如root用户该目录在:
/root/.ssh/
在该目录创建config文件
vi /root/.ssh/config
加入下面一句:
ServerAliveInterval 60
保存退出,重新开启root用户的shell,则再ssh远程服务器的时候,
不会因为长时间操作断开。应该是加入这句之后,ssh客户端会每隔一段时间自动与ssh服务器通信一次,所以长时间操作不会断开。
方法三、
修改/etc/profile配置文件
# vi /etc/profile
增加:TMOUT=1800
这样30分钟没操作就自动LOGOUT
方法四、
利用expect 模拟键盘动作,在闲置时间之内模拟地给个键盘响应,将下列代码保存为xxx,然后用expect执行
#!/usr/bin/expect
set timeout 60
spawn ssh [email protected]
interact {
timeout 300 {send "\x20"}
}
expect xxx
接着按提示输入密码就可以了,这样每隔300秒就会自动打一个空格(\x20),具体的时间间隔可以根据具体情况设置。
方法五、
如果你在windows下通过工具连接,可以设置为
secureCRT:选项---终端---反空闲 中设置每隔多少秒发送一个字符串,或者是NO-OP协议包
putty:putty -> Connection -> Seconds between keepalives ( 0 to turn off ), 默认为0, 改为300.