ssh session time out / dropping
You ssh to some remote system (usually across the internet) step away from your keyboard for a few minutes, and the session gets dropped.
The problem may be resolved by sending more keep alive packets
You can fix this by adding the following to either the /etc/ssh/ssh_config file or your local user ~/.ssh/config file
Host *
ServerAliveInterval 60
ServerAliveCountMax 2