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

관련 정보