Hi there,
WD and NFS support … long story
My PR4100 has a NFS share that works and is “mountable” from diverse linux machines.
That’s how it looks in PR4100’s /etc/exports:
"/nfs/Plex" *(rw,all_squash,sync,no_wdelay,insecure_locks,insecure,no_subtree_check,anonuid=501,anongid=1000)
and the remote machine is/etc/fstab line is this:
172.26.155.4:/nfs/Plex /mnt/NAS/plex nfs defaults 0 0
(of course, /mnt/NAS/plex does exist), with mode 777
Now I try to set up a new share, so I added it (from the webGUI), the result on /etc/exports is
"/nfs/Test" *(rw,all_squash,sync,no_wdelay,insecure_locks,insecure,no_subtree_check,anonuid=501,anongid=1000)
and added the line to /etc/fstab:
172.26.155.4:/nfs/Test /mnt/NAS/test nfs defaults 0 0
(of course, also created /mnt/NAS/test, with mode 777)
So, now, on the remote machine:
sudo mount -a
mount.nfs: access denied by server while mounting 172.26.155.4:/nfs/test
but
sudo mount -t nfs 172.26.155.4:/nfs/Test /mnt/NAS/test
works
Can someone explain me the problem ? And the solution ?
Thanks