This seems trivial but I've lost too much time searching and reading manuals. RHEL 7.9 server.
I have a simple directory being exported on nfs v4, using /etc/exports
, with specific options.
[ ~]# cat /etc/exports /path/to/my/share/ remoteserver.host.com(rw,no_root_squash,sync,insecure) [ ~]#
This is exported using: ]# exportfs -ra
However, if I view the verbose export information, I'm seeing many more options, which are breaking the intended share operations. Yes, I know I can be more explicit in /etc/exports
but I'm interested to understand where it's coming from because it's a new issue that has creeped up.
~]# exportfs -v /path/to/my/share/ remoteserver.host.com(sync,wdelay,hide,no_subtree_check,sec=sys,rw,insecure,no_root_squash,no_all_squash) [ ~]#
You can see the additional options, and in my case, specifically hide
is creating trouble.
I've checked: /etc/nfsmount.conf
but it's fully commented out.