- linux guest
- I used manjaro but it shouldn't matter which distro
- ssh client with an ssh key in /home/user/.ssh
- Optional:
mosh
- macos host (this probably works more or less the same way with a linux host also though)
- sshd on the host, accessible by the guest
- guest pubkey in
authorized_keys
for the user (not root!) account - if using mosh, forward port
60001
to the guest
If you want your ssh sessions to persist after sleeping, you can the ServerAliveInterval
option.
I really like mosh for handling unstable connections though. It's available in
homebrew. My guest's sshd is listening on port 2222, which is why I used the
--ssh
option, but you might not need that.
mosh --port 60001:60001 --ssh="ssh -p 2222" macbookpro
- Create directories in
/mnt
corresponding to what you want to mount on the host. - Edit your
/etc/fstab
as shown in thefstab
file in this repo - Reboot
Some of these just pass through to the ssh client meaning they can be useful with regular ssh shell sessions.
-o allow_other
Since we are in fstab, root will do the mounting. This option permits non-root users to access the mounts. Since we are the only user on the machine I did not investigate the security implications of doing this on a multi-user guest.
-o identityfile=path
This option instructs root to use our ssh key for authentication. of course you will need the corresponding public key in your authorized_keys file in the host.
-o ServerAliveInterval=n
Instructs the fuse client to drop the connection if it cannot reach the remote host for n seconds. That makes this option very useful for us since sshfs mounts can appear to "hang" if ssh drops the connection when if the system was asleep and therefore the fuse client could not be informed that it's dead.
-o reconnect
Very useful in combination with the above since it will now also automatically attempt to re-establish a connection after dropping it.
-o dir_cache=no
Disables the directory cache, which would allow readdir system calls to be
performed without network access. This caching probably improves performance
over slow networks, but we don't need it. Some kind of middle ground can maybe
be found with dcache_*
options described in the sshfs manpage, but I didn't
try them.
-o transform_symlinks
The manpage explains this pretty well. Seems to improve the odds that a symlink with an absolute path on the host will resolve correctly.
-o follow_symlinks
Treats all other symlinks on the host as regular files.
I looked at these and decided they aren't necessary or helpful for this use case:
-o direct_io
Disables kernel caching for read() and write() syscalls. I don't really understand how this works at that low a level but it sounds like something that wouldn't help here.
-o sync_readdir
Legacy behavior. We don't want this. Details in this commit.
-o sshfs_sync
I think we don't want this. Details in sshfs.c.