centos6&7 ssh 经常断连解决方案

1.首先编辑ssh配置
/etc/ssh/sshd_config
以下几项必须要设置
(1)关闭DNS反向解析
UseDNS no
(2)关闭ssh的gssapi认证
GSSAPIAuthentication no
GSSAPICleanupCredentials no
(3)服务器端向客户端请求消息60表示每分钟发送一次,最多发3次
ClientAliveInterval 30
ClientAliveCountMax 3


2.重启ssh
centos7
查看状态:
systemctl status sshd.service
启动服务:
systemctl start sshd.service
重启服务:
systemctl restart sshd.service
开机自启:
systemctl enable sshd.service


centos6
service sshd restart


3.centos7 关闭网络管理器
systemctl stop network.service


4.如果还是不行,关闭服务器网络连接,然后ping原服务器IP,查看IP是否被占用

你可能感兴趣的:(linux)