SSH
Disable SSH timeout
sudo vim /etc/ssh/sshd_configTCPKeepAlive no
ClientAliveInterval 3200
ClientAliveCountMax 30sudo systemctl restart ssh
# or sudo /etc/init.d/ssh restartIncrease SSH connection
$ vim ~/.ssh/config
# Content below
Host *
ServerAliveInterval 240Last updated