Skip to content

Instantly share code, notes, and snippets.

@akamas
Forked from proudlygeek/nfs-tunnel.md
Last active November 6, 2022 18:24
Show Gist options
  • Save akamas/974267e502bfcfa543a2a9230d251b75 to your computer and use it in GitHub Desktop.
Save akamas/974267e502bfcfa543a2a9230d251b75 to your computer and use it in GitHub Desktop.
Mount NFS Folder via SSH Tunnel

or easy:

autossh -M <monitor_SSH_port> -N -L <your_local_port>:localhost:2049 <remote_server_user>@<remote_server> -f
mount -t nfs -o port=<your_local_port> localhost:/home/proudlygeek /mnt/nfs-share

1. Install NFS on Server

Install the required packages (Ubuntu 12.04):

apt-get install nfs-kernel-server portmap

2. Share NFS Folder

Open the exports file:

vim /etc/exports

Add the following line:

/home/proudlygeek  localhost(insecure,rw,sync,no_subtree_check)

Restart NFS Service:

service nfs-kernel-server restart

or just export the FS:

exportfs -a

3. Install NFS Client

Install the client:

apt-get install nfs-common portmap

Make a mount folder:

mkdir /mnt/nfs-share

Setup an SSH tunnel (local-to-remote port):

ssh -fNv -L 3049:localhost:2049 user@hostname

Mount the folder:

mount -t nfs -o port=3049 localhost:/home/proudlygeek /mnt/nfs-share
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment