Server: CentOS 6 64bit
Client: Ubuntu 13.04
I have a strange problem after disabling NetworkManager on the client PC: the NFS share on my client mounts fine, but the directories are emtpy. If I mount the shares manually, everything appears and I can browse/view files.
None of the NFS server configurations have changed. None of the autofs, NFS, or fstab configurations on the client have changed.
What HAS changed on the client is NetworkManager is no longer handling the network. The last Ubuntu update broke NetworkManager so I disabled it and configured the network interface the old fashion way. The network on the client is static and works fine, except this NFS issue. The client's IP address is the same as before when NM handled the network.
I have a 2nd client running OpenSuSE. I can view the shares and see the files just fine without manually mounting. Only the Ubuntu client is having this issue.
Ubuntu client:
Code:
Linux htpc 3.2.0-58-generic #88-Ubuntu SMP Tue Dec 3 17:40:43 UTC 2013 i686 i686 i386 GNU/Linux
Ubuntu client Fstab (non-NFS entries removed):
Code:
10.10.69.1:/NAS /Media nfs rw,exec,nosuid,dev,sync,users,noatime,hard,intr,auto,rsize=32768,wsize=32768,timeo=10 0 0
Ubuntu client auto.master:
Code:
#
+auto.master
/Media /etc/auto.NAS --timeout 10
Ubuntu client auto.NAS:
Code:
NAS -fstype=nfs,rw,soft,intr,nosuid,nodev,tcp,retry=10,rsize=32768,wsize=32768 10.10.69.1:/NAS
shane@htpc:/etc$
I've checked /etc/exports on the server and the Ubuntu client's address is there. I've checked /etc/hosts.allow and the Ubuntu client's address is listed for portmap, lockd, rquotad, mountd, and statd.
After a fresh reboot, there is an entry in mtab for the NFS share showing it is mounted. If I manually mount using:
Code:
sudo mount 10.10.69.1:/NAS /Media
then I can view the files and mtab has a SECOND entry for the same mount. So confused.
Halp.