Totally Seamless SSHFS under Linux using Fuse and Autofs
Colin M | May 2, 2007 | 11:28 pmThis is awesome.
I worked on this for something like 2 hours this afternoon, and finally tracked down all the nuances to get it working. I'm really pleased with the results, and hope that they can be of some to use to you as well, because I could not find a decent tutorial on this subject despite extensive Googling.
The Problem: Connect to a remote filesystem over SSH
Odds are if you've stumbled on this tutorial, you already know the problem: You want to access a remote file system over SSH. You want to use FUSE SSHFS, and you don't want to ever have to think about it, so you're looking for Autofs integration. To keep this to the point, I'm going to skip over the installation of these packages and just explain the configuration, especially since installation is very distribution specific. I'll simply say on my system (Ubuntu Feisty) it consisted of:
sudo apt-get install sshfs autofs
The Solution
Getting SSHFS to work with Autofs really isn't hard, you just need the magic configuration. Here's how I got things working for me:
- Set up certificate authentication for your local root to the remote account on the remote machine, by use of
sudo ssh-keygenlocally, and the (remote account's)~/.ssh/authorized_keysfile. - Test the certificate authentication by verifying that the following command does not prompt for your remote password:
sudo ssh remoteuser@remotehost uptime
- Test that sshfs can establish the requisite connection:
sudo mkdir /mnt/sshfs_temp sudo sshfs remoteuser@remotehost: /mnt/sshfs_temp sudo fusermount -u /mnt/sshfs_temp sudo rmdir /mnt/sshfs_temp
Note that the
:is required after the host to specify the remote directory. (:alone means the remote user's home.:/remote/pathindicates a remote path.) - Add the following line to your
/etc/auto.masterfile:/mnt/ssh /etc/auto.sshfs uid=1000,gid=1000,--timeout=30,--ghost
Where /mnt/ssh is the path you want all ssh automounts to appear in,
1000 is the UID of the user you want the sshfs mount to belong to (i.e., be writable by),
1000 is the GID of the user you want the sshfs mount to belong to, and
30 is the timeout in seconds to keep the FUSE connection alive. - Copy the following into a new file
/etc/auto.sshfs:# # This is an automounter map and it has the following format # key [ -mount-options-separated-by-comma ] location # Details may be found in the autofs(5) manpage remote1 -fstype=fuse,rw,nodev,nonempty,noatime,allow_other,max_read=65536 :sshfs\#remoteuser@remotehost1\: remote2 -fstype=fuse,rw,nodev,nonempty,noatime,allow_other,max_read=65536 :sshfs\#remoteuser2@remotehost2\:/remote/path
This creates two sshfs mappings (obviously, adding or removing lines creates more or fewer mappings).
The first will be at/mnt/ssh/remote1, and map to the home directory ofremoteuseron the hostremotehost1.
The second will be at/mnt/ssh/remote2, and map to the directory/remote/pathon the hostremotehost2, with the permissions of the userremoteuser2.
Note the\characters to escape#and:These escape characters are what took me two hours to track down: FUSE requires a parameter of the form:sshfs#user@host:directory, but autofs treats everything following a#as a comment, and the:character has a special meaning. These characters must be escaped by a\ - Restart autofs to reload the configuration files:
sudo /etc/init.d/autofs restart
- Test it out! As root or the user indicated by
uidabove, run:ls /mnt/ssh/remote1
You should be greeted by the contents of the remote file system. Congratulations!
The Problems
- This exact setup only works for one user due to specifying a uid. This is fine for a home desktop system, but will likely need further work to allow multiple users access to the remote filesystem. Perhaps careful usage of gid could alleviate this problem, though logging into the remote machine as a specific user still represents a security risk.
- I have not examined the architecture enough since I am only seeking to enable my home desktop system, so I cannot vouch for the security of this setup whatsoever. For example, the use of the allow_other option for FUSE may have security consequences since the mountpoint is created as root (to my understanding, at least).









[...] I was stuck for a bit setting up sshfs+autofs
traviscline.com» Blog Archive » autofs+sshfs rocks | September 3, 2007 | 3:00 pm[...] I was stuck for a bit setting up sshfs+autofs ala this guide: http://www.mccambridge.org/blog/2007/05/totally-seamless-sshfs-under-linux-using-fuse-and-autofs/ [...]
This guide really helped me out. I was searching all
Jinto Reedwine | September 7, 2007 | 8:38 pmThis guide really helped me out. I was searching all over the net for the proper configuration to get this setup :). I had to resort to setting the gid and uid in the auto.sshfs file, but that was trivial once it was mounting!
Thanks a bunch!
Cool!!!! i had allready autofs running and a samba
Hennie | October 13, 2007 | 5:00 pmCool!!!! i had allready autofs running and a samba share mounted but actually wanted the disk (connected to a wireless router at home running unslung) to be available allso over the internet.
Using dropbear at the wireless router at home (wl500g) where my usb harddisk is connected to,
i can now mount it from my ubuntu laptop everywhere where i have internet access.
i changed the timeout from 30sec to 300sec so if i use a graphical file browser the
folder not suddenly dismounts again if i dont do any within 30 secs.....
hmm strange the samba mounts seems to be much faster in file
(also with autofs and smbfs) but the ssh mount seems to cache ...... the 3 try of copying an mp3 file it suddenly went from 20 secs to direct zero!
Great story - I wrote a story on the same
Thomas Jansson | January 14, 2008 | 10:35 amGreat story - I wrote a story on the same subject and used your document as a reference. There is however a small error with the line:
/mnt/ssh /etc/auto.sshfs uid=1000,gid=1000,–timeout=30,–ghost
Somehow the formating is wrong and instead of two dash's there is only one long dash berfore "timeout=30" and this isn't doesn't work.
Thanks for catching that, Thomas! Wordpress pulled a fast
Colin M | January 15, 2008 | 1:57 pmThanks for catching that, Thomas! Wordpress pulled a fast one on me, automatically converting two dashes into an "endash." I've disabled all that reformatting (per instructions in this WordPress support post, for the interested).
The upshot is, the code samples should work again if you copy & paste. Just to make sure I don't lose this in a future update or something, double check for yourselves that there are two dashes in front of the option
timeoutabove, as Thomas notes. If that is correct, the rest will be, too.[...] laptop and the laptop is stolen the burglar could
Autofs and sshfs - the perfect couple | tjansson.dk | January 16, 2008 | 4:39 am[...] laptop and the laptop is stolen the burglar could gain access to the remote systems. References http://www.mccambridge.org/…; [...]
Any thoughts on using a non-priv user's ssh-agent to provide
Zak Brown | January 30, 2008 | 8:45 pmAny thoughts on using a non-priv user's ssh-agent to provide the key rather than using an unencrypted private key in root's homedir?
According to the ssh-agent Wikipedia article, ssh-agent creates a socket in /tmp that could be used by root to decrypt an ssh challenge response.
So shouldn't it be possible to have autofs do this? With fuse Autofs you can pass any ssh option you want, so a good starting point would be to see if you can get the root user to open up ssh connections using the non-priv user's key.
After that autofs wildcards would be cool. The goal being a directory in my home dir where any directory you change into automatically attempts to make an sshfs mount point to that machine.
I think using afuse would solve a lot of problems
candido duarte | August 12, 2008 | 10:58 pmI think using afuse would solve a lot of problems here.
Take a look here.