I am having a whirlwind of trouble mounting a drive over nfs onto my FreeBSD machine from Fedora. I can mount from Fedora to Fedora using nfs (and its external IP) without fail, and I can mount from ubuntu to FreeBSD over NFS. I have set Fedora's SELinux to permissive with no noticeable change.
I will try to provide as much information as possible.
I have a
client running FreeBSD 7.3 at IP address 10.7.183.212
server running Fedora 17 at IP address 10.7.183.219
------Fedora--------
On the fedora system I have installed
nfs-utils nfs-utils-lib autofs
On fedora in /etc/exports i have
/home/playground 10.7.0.0/16(rw,sync,no_subtree_check,all_squash,anonuid=### #,anongid=####)
On fedora I have also set selinux to permissive (just in case)
I have services rpcbind nfs-server nfs-mountd nfs-lock nfs-idmap running
In the firewall settings I have enabled NFS4
------FreeBSD------
On freeBSD /etc/fstab' contains
10.7.183.219:/home/playground /mnt/playground nfs rw,tcp,hard,intr,rsize=32768,wsize=32768 0 0
'mount -a' returns error
[tcp] 10.7.183.219:/home/playground: RPCPROG_NFS: RPC: Port mapper failure - RPC: Timed out
on FreeBSD when I run 'mount -t nfs 10.7.183.219:/home/playground /mnt/playground' I receive error
[udp] 10.7.183.219:/home/playground: RPCPROG_NFS: RPC: Port mapper failure - RPC
your help is much appreciated.