centos6&7 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是否被佔用