Hello,
i'm trying to mount a NFS-Export from a Linux-PC and ran into some Problems.
First some info about what i'm trying to do:
I've got a folder which should be shared between Windows and Linux Users. This folder is a simple folder inside a NTFS-security-styled volume and it works perfectly for all Windows-clients.
On the Linux-side, everytime i try to access this folder with anyone except root, permission is denied.
exportfs:
/vol/vol_data/folder -sec=sys,rw=172.30.1.40,root=172.30.1.40
usermap.cfg:
DOMAIN\Administrator <= 172.30.1.40:*
In my understanding this means that the IP 172.30.1.50 is fully trusted and every Unix-User coming from this IP is mapped to the Domain-Administrator. Well, it works for the root-Account, but not for any other user:
[root@linux mnt]# mount -t nfs netapp:/vol/vol_data/folder /mnt/mountpoint
[root@linux mnt]# ls -la
drwxr-xr-x. 6 root root 4096 31. Jan 14:31 .
dr-xr-xr-x. 23 root root 4096 21. Feb 12:51 ..
drwxrwxrwx 3 root root 4096 21. Feb 13:57 mountpoint
[root@linux mnt]# ls -la mountpoint/
drwxrwxrwx 3 root root 4096 21. Feb 13:57 .
drwxr-xr-x. 6 root root 4096 31. Jan 14:31 ..
drwxrwxrwx 12 root root 4096 21. Feb 14:00 .snapshot
[root@linux mnt]# su user
[user@linux mnt]# ls -la mountpoint/
ls: failed to open dir: Permission denied
I'm pretty new to Netapp so i'm thankful for every help.
Markus