- Solved
- Minor
On the V7 UNRaid server share config screen, NFS security setting rule field I put in:
192.168.166.6(rw) 192.168.166.8(rw)
Notice the space between them. After I hit apply, the space is removed and the /etc/exports file has it without a space and there are no exports. See below:
root@UNRaid:~# cat /etc/exports
# See exports(5) for a description.
# This file contains a list of all directories exported to other computers.
# It is used by rpc.nfsd and rpc.mountd.
"/mnt/user/backup" -fsid=100,async,no_subtree_check 192.168.166.6(rw)192.168.166.8(rw)
root@UNRaid:~# showmount -e
Export list for UNRaid:
root@UNRaid:~# exportfs -ra
exportfs: /etc/exports:2: syntax error: bad option list
I need to edit the /etc/exports file and put the space back in there for it to work.
root@UNRaid:~# cat /etc/exports
# See exports(5) for a description.
# This file contains a list of all directories exported to other computers.
# It is used by rpc.nfsd and rpc.mountd.
"/mnt/user/backup" -fsid=100,async,no_subtree_check 192.168.166.6(rw) 192.168.166.8(rw)
root@UNRaid:~# exportfs -ra
root@UNRaid:~# showmount -e
Export list for UNRaid:
/mnt/user/backup 192.168.166.8,192.168.166.6