客户端是 Ubuntu Xenial,手动安装就可以了:
mount 10.0.0.12:/mnt/d1 /mnt/d1
然后我将该行从 /etc/mtab 复制到 /etc/fstab:
10.0.0.12:/mnt/d1 /mnt/d1 nfs4 user,rw,relatime,vers=4.0,rsize=1048576,wsize=1048576,namlen=255,hard,proto=tcp,port=0,timeo=600,retrans=2,sec=sys,clientaddr=10.0.0.23,local_lock=none,addr=10.0.0.12 0 0
umount /mnt/d1
然后使用 fstab 再次挂载它:
mount /mnt/d1
并且在那个时候超时。
nfs服务器是centos7
更新了防火墙:
firewall-cmd --permanent --zone=public --add-service=nfs
并使用 /etc/exports 重新加载,如下所示:
/mnt/d1 10.0.0.0/24(rw,sync,no_subtree_check)