I am at a quandary. I would like to create a NFS share that is a open to everybody, I want to use it as a temporary bit bucket. i have played with permissions and groups but can’t figure out how to open it totally open,
Create an account server-side (for example nfsuser).
Create a dataset owned by nfsuser (for example dozer/NFS) with permissions granting minimally 0o700 (owner RWX)
Create an export pointing to /mnt/dozer/NFS and set mapall user to nfsuser
Now all client connecting to the server are accessing as nfsuser and have full permissions to it.
NOTE: this is of course wildly insecure, but that is kind of expected with NFS.
2 Likes
Thanks that worked like a champ.