Ubuntu – One NFS server to multiple clients

nfs

How do I set up an NFS server to multiple clients?
I have set up an NFS server but it does only share to one client.

Best Answer

In your /etc/exports file, you can either use a wildcard:

/path/to/share    *(rw,sync,etc)

Or you can use CIDR notation

/path/to/share    10.0.0.0/24(rw,sync) 

Or you can put multiple IPs in line like so:

/path/to/share    10.0.0.5(rw) 10.0.0.6(ro) 
Related Question