4

This is just a quick note that I want to share with others. It is about the problem that I encountered with my office machine. It was hanging continuously when ssh mount was used. The main problem is, as I assumed, the termination of ssh session, which caused the sshfs not to respond.

The solution for this issue is the ServerAliveInterval 60 directive in /etc/ssh/ssh_config file.

Hope this someone help!

1 Answers1

5

Solution for the above problem is to fire the terminal and enter

sudo nano /etc/ssh/ssh_config

Add at the end of the file:

ServerAliveInterval 60

Save and exit. Restart ssh with

sudo service ssh restart
muru
  • 207,228