Problem exporting NFS filesysytem with root permissions to Linux


 
Thread Tools Search this Thread
Operating Systems Solaris Problem exporting NFS filesysytem with root permissions to Linux
# 1  
Old 04-01-2015
Problem exporting NFS filesysytem with root permissions to Linux

Hi,

I have a Solaris 10 server and I want to export a filesystem to a linux client and give the client's root user root priviliges on the filesystem.
The client is an ubuntu 14.04 LTS server.
the dfstab on the server looks lik this:
Code:
 /usr/sbin/share -F      nfs     -o      sec=sys,rw,root=something.somewhere.nl:@192.168.1.0 -d "user home dirs"    /home/t4   -

The linux server is on the 192.168. network. The fstab line looks like:
Code:
tmku201:/home/t4    /home/tmku201    nfs    defaults    0    0

The mounting works perfectly, but root of the Linux server can not delete files on /home/tmku201.

Do you have any ideas?
Regards,
Nico

---------- Post updated at 09:27 AM ---------- Previous update was at 09:00 AM ----------

Replying to my own post I think I fixed it.
I changed the fstab line on the Linux server:

Code:
192.168.1.101:/home/t4    /home/tmku201    nfs    defaults    0    0

You know, my servers have the first network interface attached to the university network and the second to the 192.168. backend.

And in the first fstab I mixed things up a bit. tmku201 is the hostname on the university network for the Solaris server and I want to mount over the backend.
Strange though that the mount succeeded at all

Rregards,
Nico
# 2  
Old 04-01-2015
Thanks for sharing your finding.
You can also give a hostname that is displayed with
Code:
getent hosts 192.168.1.101

You are right, it is a bit strange that the mount works. The request is routed to the NFS server's external address and returned from the other address. Maybe this is checked/rejected by the NFS client.
Note that usually the mount request uses UDP for rpcbind and mount RPC, while the NFS RPC uses tcp. But there shouldn't be a difference in the routing (but there could be one in a fire wall).
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Permissions for NFS share

Hi, I have created a NFS share in Solaris 10 server1 and mounted it on solaris 10 server 2.But I want to change owner of the files from nobody to a particular user in client. Which command should I use. I have tried the following but it doesn't allow to change permissions in the server2 as... (0 Replies)
Discussion started by: Rossdba
0 Replies

2. UNIX for Advanced & Expert Users

[Solved] nfs share permissions with java

Please bare with me while I try to explain this weird problem. We are exporting a filesystem from an aix box to two linux boxes. On the linux box a java-weblogic application hits the share. For explanation benefits I'll describe the users thus. aix filesystem owned by userA in groupA on... (2 Replies)
Discussion started by: fwellers
2 Replies

3. Shell Programming and Scripting

Issue with changing the permissions on an nfs mount

Hi All, I have an nfs share which I mounted to my linux machine as below. df -k output TSDapp-na-02:/vol/tsd_app_1/rn_jira 47185920 11663072 35522848 25% /opt/rn_jira I have no entry for this in my /etc/fstab. I did it by the following way. mount -t nfs... (2 Replies)
Discussion started by: Tuxidow
2 Replies

4. Solaris

NFS Mount permissions weird

Hi all. I have a nas mounted on a solaris box as /u04. Currently I am getting a permission denied error from my HP DataProtector backup and when I ls -l the actual directory I get: drwxrwxrwt 5 65535 nogroup 4096 Nov 9 13:46 u04 I also have SAN mounted as /u06 and it is... (1 Reply)
Discussion started by: jamie_collins
1 Replies

5. AIX

NFS mounts and user permissions

We need to allow ordinary users to preform NFS mounts on a AIX server without giving them root access to the server. Is there a way to give an ordinary users root access on a tem basis or a script to allow them to preform NFS mounts? (4 Replies)
Discussion started by: daveisme
4 Replies

6. Solaris

Permissions on NFS mount

I am mounting a directory remotely but I am not able to write to the NFS mount. I am using the following commands to share and mount the file system: On source server in DFStab file share -F nfs -o rw -d "IWStore" /iw-store On the client I am mounting like this: mount -F nfs -o rw... (4 Replies)
Discussion started by: wstclair
4 Replies

7. Solaris

NFS mount. Nobody Nobody permissions.

Hi, I have an NFS mount on a Solaris 10 server with file permissions nobody:nobody. This is an NFS export from an Netapp filer. Export attributes from the filer are below. Anonymous User ID=0 Read-Write Access (All Hosts) Security (sys) I have other NFS exports set up with the same... (7 Replies)
Discussion started by: gwhelan
7 Replies

8. HP-UX

nfs export permissions

Hello, If I have an export like: /usr/temp -rw=ram:alligator means that /usr/temp has "rw" permissions to ram and alligator machines and has "ro" to everyone else? (1 Reply)
Discussion started by: psimoes79
1 Replies

9. UNIX for Advanced & Expert Users

nfs permissions

Hi all can someone tell me how to set the follwoing permissions in the /etc/exports file to share a directory. I need 2 users eg a+b to be able to read and write to the directory but everyone else to just read. we have NIS in our environment and I though I could use netgroups do do this. My... (2 Replies)
Discussion started by: silvaman
2 Replies
Login or Register to Ask a Question