Hi,
Before troubleshooting, first thing I want to ask :
Is the export-policy enabled? (By-default it is disabled for cifs)
According to the KB below:
Since 8.2, export policies have no effect on CIFS, and only CIFS ACLs and share level permissions determine access. If you want ipbased (export policy based) access restrictions for cifs to apply, modify the corresponding advanced level cifs vserver option with cifs option modify on the cluster.
https://kb.netapp.com/Advice_and_Troubleshooting/Data_Storage_Software/ONTAP_OS/How_do_export-policies_work_in_clustered_Data_ONTAP%3F
Go to advance level:
::> set adv
Warning: These advanced commands are potentially dangerous; use them only when directed to do so by NetApp personnel.
Do you want to continue? {y|n}: y
Check the current policy first:
::*> vserver cifs options show -vserver <vserver name> -fields is-exportpolicy-enabled
vserver is-exportpolicy-enabled
------- - ----------------------
<vserver name> false
Enable it:
::*> vserver cifs options modify -vserver <vserver name> -is-exportpolicy-enabled true
Once enabled, give it a try.
Thanks!