The Spark Between

Thoughts, Projects, Happenings, Ideas
  • rss
  • Home
  • About
  • SmartBox
  • LiveTrip
  • Calendar
  • Photos

Totally Seamless SSHFS under Linux using Fuse and Autofs

Colin M | May 2, 2007 | 11:28 pm

This 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:

  1. Set up certificate authentication for your local root to the remote account on the remote machine, by use of sudo ssh-keygen locally, and the (remote account's) ~/.ssh/authorized_keys file.
  2. Test the certificate authentication by verifying that the following command does not prompt for your remote password:
    sudo ssh remoteuser@remotehost uptime
  3. 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/path indicates a remote path.)

  4. Add the following line to your /etc/auto.master file:
    /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.

  5. 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 of remoteuser on the host remotehost1.
    The second will be at /mnt/ssh/remote2, and map to the directory /remote/path on the host remotehost2, with the permissions of the user remoteuser2.
    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 \

  6. Restart autofs to reload the configuration files:
    sudo /etc/init.d/autofs restart
  7. Test it out! As root or the user indicated by uid above, 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).
Categories
Howto, Linux, Workedforme
Comments rss
Comments rss
Trackback
Trackback

« Your Friendly Neighborhood Fountain Repairman Even Nerdy Boys Will Be Boys »

8 responses

[...] 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 pm

This 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 pm

Cool!!!! 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 am

Great 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 pm

Thanks 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 timeout above, 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 pm

Any 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 pm

I think using afuse would solve a lot of problems here.
Take a look here.

Leave a comment

You can use these tags : <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre lang="" line="">

Random Quote

Take my hand and lead me to salvation
Take my love, for love is everlasting
And remember, the truth that once was spoken:
To love another person is to see the face of God.
Les Miserables

Calendar

October 2008
S M T W T F S
« Sep «-»  
 1234
567891011
12131415161718
19202122232425
262728293031  

Latest Albums

  • Yellowstone Trip: Day 8

     
  • Yellowstone Trip: Day 7

     
  • Yellowstone Trip: Day 6

     

Blogroll

  • Angela
  • Ashley
  • Jake
  • Jared
  • Jeni
  • Jon
  • Kaisa
  • Lauren
  • Paul
  • Scott

Archives

rss Comments rss valid xhtml 1.1 design by jide powered by Wordpress get firefox