First create a share
zfs create zones/camera
Share with access to all intranet pcs with write access as root
zfs set sharenfs='sec=none,rw=*,anon=0' zones/camera
Note: sec=none
must PRECEED any following option see man share_nfs
Each sec= option specifies modes that apply to any
subsequent window=, rw, ro, rw=, ro=, and root=
options that are provided before another sec= option.
Each additional sec= resets the security mode
context, so that more window=, rw, ro, rw=, ro=, and
root= options can be supplied for additional modes.
When the nobody
user is supposed to be used use:
zfs set sharenfs='sec=none,rw=*' zones/camera