解决SSH自动断线

2019-11-29  本文已影响0人  小迷糊紫靈

在使用Centos 系统时短时间内没有对系统进行操作ssh会自动断线。
解决方法如下:
1、找到sshd_config文件

root@localhost ~]# cd /etc/ssh/
[root@localhost ssh]# ls
moduli       ssh_host_ecdsa_key      ssh_host_ed25519_key.pub
ssh_config   ssh_host_ecdsa_key.pub  ssh_host_rsa_key
sshd_config  ssh_host_ed25519_key    ssh_host_rsa_key.pub

2、修改参数

#找到并修改
#ClientAliveInterval 0
#ClientAliveCountMax 3
 改为
ClientAliveInterval 60
ClientAliveCountMax 3 

3、重启sshd服务

systemctl restart sshd
上一篇下一篇

猜你喜欢

热点阅读