Dark Launch

This is a Dark Launch.

SSH Timeout Keep Alive Option; Reconnect; ssh times out

To keep your ssh session from timing out, do the following:
Edit ssh_config
Code
 
vi /etc/ssh/ssh_config
 

Append:
Code
 
ServerAliveInterval 15
ServerAliveCountMax 3
 

Additionally, use the reconnect option:
Code
 
sshfs myuser@ftp.mysite.com:/ ~/mnt/mysite -o reconnect