I've been attempting to mount a filesystem from a network server. I followed the 30.3 Handbook guide, but still no luck. Below are the commands/files I executed/wrote. The error I receive when mounting is Permission denied. The server is running FreeBSD and the client is PC-BSD.
# Server 192.168.1.9
# Client 192.168.1.7
# Server 192.168.1.9
Code:
# /etc/rc.conf
rpcbind_enable="YES"
nfs_server_enable="YES"
mountd_flags="-r"
# /etc/exports
/home/path/to/directory/ 192.168.1.7 #client ip
kill -HUP `cat /var/run/mountd.pid`
rpcbind
nfsd -u -t -n 4
mountd -r
# Client 192.168.1.7
Code:
# /etc/rc.conf
nfs_client_enable="YES"
nfsiod -n 4
mount 192.168.1.9:/home/path/to/directory/ /mnt
Permission denied