I created a key pair to connect to a Synology disk from 12.04. Deployed, edit ~/.ssh/config to automatically use it. Tested:
ssh user@remotesynology
-> works like a charm. Tested on a second remote machine (running Ubuntu server) -> works.
Now tested:
sshfs user@theubuntuserver: /home/user/ubuntuserver
-> works
Finally:
sshfs user@remotesynology: /home/user/remotesynology
-> error:
read: Connection reset by peer
I had a look at this issue, but that doesn't seem to apply (I have the user in the fuse group, and it works for the other machine) and I don't get a permission denied error.
What do I miss?
In my case (I tried to connect to remote synology as well!) the problem was that SFTP was not enabled on server side. The symptoms were the same: I could ssh to server without any problems, but
sshfs
command failed.To enable SFTP on Synology server go to Control Panel -> File Services -> FTP tab -> SFTP section.
I've had issues in the past where
sshfs
was acting weird. First thing you really should do after installingsshfs
is restart your machine, or at leastX
, once you've added yourself to the fuse group.This error is typically seen when a user is not in the fuse group, or if allow_other in fuse is not enabled.
There have been times where my ssh key was causing issues. I've had to explicitly tell
sshfs
what key file to use, even whenssh
was configured for it (~/.ssh/config
).sshfs -oIdentityFile=/full/path/to/id_rsa user@machine
Another solution is to use your
/etc/fstab
and add a new entry here:This tells your machine to mount
/remote/path
to/mnt/local/path
. It's saying that this mount will be a fuse filesystem. There are a few other settings that allow things such as mounting when networking becomes available, automatically re-connecting if there is a disconnect, etc.The idmap and allow_other portion allow users within the fuse group to mount the filesystem. It will also help map the permissions to match up to the user and group also specified.
In this example, you could then run the following to get the filesytem mounted:
mount /mnt/local/path/
ls /mnt/local/path/
I just had the same problem. The reason was SFTP subsystem not being enabled on the server (SSHFS is using it). The solution was adding the following line to
/etc/ssh/sshd_config
on the server:If you have iptables firewall rules set up on your server, it might've locked you out while you've been tinkering with sshfs - which would also result in
Connection reset by peer
.