Hi all,
I'm having difficulties with NFS on FreeBSD. NFS server is running on FreeBSD 11 and I want to share /srv/data folder which is on ZFS partition.
My server side configuration:
/etc/rc.conf
/etc/exports
My client side configuration (FreeBSD 10.3):
/etc/rc.conf
When I try mount shared directory, this err message appears:
Could please anyone help?
Thanks
I'm having difficulties with NFS on FreeBSD. NFS server is running on FreeBSD 11 and I want to share /srv/data folder which is on ZFS partition.
My server side configuration:
/etc/rc.conf
Code:
nfs_server_enable="YES"
nfs_server_flags="-u -t -n 4"
mountd_enable="YES"
mountd_flags="-r"
rpcbind_enable="YES"
/etc/exports
Code:
/srv/data -network=10.0.0.0/24
root@fileserver:~ # showmount -e
Code:
Exports list on localhost:
/srv/data 10.0.0.0
My client side configuration (FreeBSD 10.3):
/etc/rc.conf
Code:
nfs_client_enable="YES"
nfs_client_flags="-n 4"
rpc_lockd_enable="YES"
rpc_statd_enable="YES"
root@client:~ # showmount -e 10.0.0.10
Code:
Exports list on 10.0.0.10:
/srv/data 10.0.0.0
When I try mount shared directory, this err message appears:
Code:
NFSPROC_NULL: RPC: Program unavailable
Code:
root@client:~ # mount -t nfs 10.0.0.10:/srv/data /tmp
[tcp] 10.0.0.10:/srv/data: NFSPROC_NULL: RPC: Program unavailable
Could please anyone help?
Thanks