I have a NFS server running on 192.168.0.3 with ZFS.
When a client reboots, it doesn't mount /usr/home automatically. Here's my /etc/fstab
But I can mount it manually running
Code:
showmount -e 192.168.0.3
Exports list on 192.168.0.3:
/usr/ports 192.168.0.0
/usr/home 192.168.0.0
When a client reboots, it doesn't mount /usr/home automatically. Here's my /etc/fstab
Code:
# Device Mountpoint FStype Options Dump Pass#
192.168.0.3:/usr/home /usr/home nfs rw 0 0
192.168.0.3:/usr/ports /usr/ports nfs rw,noauto 0 0
df | grep 192.168.0.3
shows nothing.But I can mount it manually running
Code:
mount /usr/home
df | grep 192.168.0.3
192.168.0.3:/usr/home 4078299060 15057670 4063241389 0% /usr/home
mount -a -t nfs
also doesn't work.