通过 sshfs 自动挂载的问题

通过 sshfs 自动挂载的问题

我已经配置了这个挂载点/etc/stab

sshfs#[email protected]:/opt/cache /opt/cache  fuse defaults,allow_other,nonempty,delay_connect  0 0

但似乎它没有按预期工作,因为安装时不时会断开连接。关于哪个配置文件或日志来查找可能的诊断有什么想法吗?

参考操作系统:

uname -a
Linux tomcat-reports2 3.16.0-4-amd64 #1 SMP Debian 3.16.36-1+deb8u2 (2016-10-19) x86_64 GNU/Linux

lsb_release -a
No LSB modules are available.
Distributor ID: Debian
Description:    Debian GNU/Linux 8.6 (jessie)
Release:    8.6
Codename:   jessie

答案1

由于不活动(缺少与 SSH 连接相关的 TCP 帧),您的连接可能被防火墙切断。尝试启用保持活动状态。

在您的 中/etc/ssh/ssh_config,添加:

TCPKeepAlive yes
ServerAliveInterval 30
ServerAliveCountMax 10

相关内容