Hi guys,
I've started playing/learning NFSv4 on a amd64 8.2-RELEASE box and I have to admit I didn't come across any docs that will explain the /etc/exports syntax from A to Z and all the options in it. I've read the man pages for exports, nfsv4, nfsd, checked on google but the syntax example I always come across is something like this:
but this fails with "bad export list".
Currently I have:
and I was surprised to see that I cannot use "192.168.0.0/16" instead of "-network 192.168.0.0 -mask 255.255.0.0".
Docs anyone ?
I've started playing/learning NFSv4 on a amd64 8.2-RELEASE box and I have to admit I didn't come across any docs that will explain the /etc/exports syntax from A to Z and all the options in it. I've read the man pages for exports, nfsv4, nfsd, checked on google but the syntax example I always come across is something like this:
Code:
/export 192.168.0.12(rw,fsid=0,no_subtree_check,async,no_root_squash)
/export/music 192.168.0.12(rw,no_subtree_check,async,no_root_squash)
Currently I have:
Code:
# V4 definitions
V4: /
/usr/ports -network 192.168.0.0 -mask 255.255.0.0
Docs anyone ?