Keep SSH Session alive
2009-01-28 by xpheas
I noticed that ssh connections from my Ubuntu terminal to my Debian server timeout after a few minutes (idle). To fix this issue i added the following to /etc/ssh/ssh_config:
Now every 60 seconds a keep alive signal is sent to the server and the connection keep alive.
BASH-Code:
| ServerAliveInterval 60 |
Now every 60 seconds a keep alive signal is sent to the server and the connection keep alive.
