操作系统:CentOS Linux release 7.9
工具:SecureCRT 7
工作要求:终端**时间未响应操作时,即超过该时间将会自动断开远程连接。
方法一:
[root@Linux /]#echo "export TMOUT=900" >> /etc/profile
[root@Linux /]# source /etc/profile
一般上述方法即可解决问题,但有时还要通过下面方法加固一下才能彻底解决连接超时的问题。
方法二:
[root@Linux /]# vi /etc/ssh/sshd_config
找到以下两项配置:
#ClientAliveInterval 0
#ClientAliveCountMax 3
修改为:
ClientAliveInterval 60
ClientAliveCountMax 900