Wednesday Sep 16, 2009

gromit is my Solaris 10 server, chorlton is my OSX desktop. Explain this:
gromit# zfs get sharenfs gromit/store
NAME          PROPERTY  VALUE                 SOURCE
gromit/store  sharenfs  anon=shared,sec=none  local

chorlton$ ls /net/gromit/store
ls: cannot open directory /net/gromit/store/: Operation not permitted

gromit# zfs set sharenfs='anon=shared' gromit/store

chorlton$ ls /net/gromit/store
file1  file2

chorlton$ touch /net/gromit/store/file3
touch: /net/gromit/store/file3: Permission denied

gromit# zfs set sharenfs='anon=shared,sec=none' gromit/store

chorlton$ touch /net/gromit/store/file3
chorlton$ echo $?
0