ssh server timeout code example
Example 1: increase ssh session timeout linux
ssh -o ServerAliveInterval=60 -i Firstme.pem [email protected]
Example 2: ssh connection timeout
$ sudo vi /etc/ssh/sshd_config # in server
#Add the following
ClientAliveInterval 1200
ClientAliveCountMax 3
$ sudo systemctl reload sshd
# Remember timeout value in seconds = ClientAliveInterval * ClientAliveCountMax
Example 3: ssh connection timeout
ClientAliveInterval 1200
ClientAliveCountMax 3