sshfs 错误:连接被对等方重置

sshfs 错误:连接被对等方重置

[其他重复的线程没有帮助,所以打开一个新闻]

我尝试挂载远程文件夹并收到如下错误:

sanjarbek@laptop:~$ sshfs -o sshfs_debug [email protected]:/remote/path /local/path/ 
SSHFS version 2.5
read: Connection reset by peer

我可以像这样登录服务器:

ssh -oHostKeyAlgorithms=+ssh-dss [email protected]

它有效。

用户在熔断组中:

sanjarbek@laptop:~$ grep fuse /etc/group
fuse:x:1002:sanjarbek

还:

sanjarbek@laptop:~$ ll /etc/fuse.conf
-rw-r--r-- 1 root fuse 280 Jun 20  2014 /etc/fuse.conf

有人有想法吗?

答案1

~/.ssh/config使用内容创建一个

Host 192.168.1.2
    HostKeyAlgorithms=+ssh-dss

它是您在命令行 ( ) 上执行的操作的有效替代方案。ssh -oHostKeyAlgorithms=+ssh-dss [email protected]

或者生成并设置新的密钥对(不再推荐 DSA 密钥)。

相关内容