sshfs 문제 해결: openssl이 실패하는 원인은 무엇입니까?

sshfs 문제 해결: openssl이 실패하는 원인은 무엇입니까?

sshfs에는 원격 컴퓨터(라우터)에 sftp 서버가 필요하다고 생각합니다.

ipkg list_installed | grep -i sftp
openssh-sftp-server - 5.9p1-1 - sftp-server only from a FREE version of the SSH protocol suite of network connectivity tools.

목표는 sshfs를 호출하여 원격 디렉터리를 마운트하는 것입니다.

sshfs [email protected]:/mnt/CRUZERFIT16/directory/ /home/user/Documents/scpbox/

이 sshfs 설정은 5월에 제대로 작동했지만 가족 구성원이 라우터를 재설정했습니다. sshfs가 오류를 반환합니다:

remote host has disconnected
total 0

라우터에 원격으로 SFTP를 시도하면 다음이 반환됩니다.

/opt/libexec/sftp-server: can't load library 'libcrypto.so.0.9.8'
Connection closed

ipkg list_installed | grep openssl로 돌아가:

openssl - 0.9.8v-2 - Openssl은 다른 많은 애플리케이션 및 라이브러리에 필요한 libcrypto 및 libssl 라이브러리에서 SSL 구현을 제공합니다.

openssl이 라우터에 성공적으로 다시 설치되었습니다.

ipkg -force-reinstall install  openssl

그리고이제 sftp와 sshfs를 할 수 있습니다대상 라우터를 입력합니다. 다시 설치하기 전에 openssl을 사용할 수 없는 이유를 모르겠습니다. openssl이 sftp 서버에서 작동하는지 확인하는 테스트 명령이 있습니까?

관련 정보