Ubuntu client can’t mount Nexenta NFS

nexentanfssolarisUbuntuzfs

I have a Nexenta storage box (Solaris), which exports an NFS share.
Mac OS X and older Ubuntu clients can mount the NFS share just fine without any special options. Later version of Ubuntu simply returns:

mount.nfs: access denied by server while mounting 10.0.0.10:/volumes/Shares/share

From the Nexenta logs it doesn't seem like Ubuntu is even trying to communicate and the logs on the Ubuntu client is also empty.

The Nexenta is configured to NFSv3 only.
My fstab entry is:

10.0.0.10:/volumes/Shares/share/ /mnt/images/ nfs vers=3,rw,nodev,nosuid,noexec

Is there something I need to consider when mounting Solaris/Nexenta NFS shares from Linux?

Best Answer

Questions like firewalls are good things to check. Once you are sure the machines can talk to eachother, I found that I needed to set some access control in ZFS:

zfs set share=name=tank,path=/tank,prot=nfs,nosuid=true,sec=sys,rw=@10.0.0.1/24,root=@10.0.0.1/24 tank

Try that and see if you can get them talking.