So I am trying to setup a NFS export to mount on boot. The volume will mount when I use the mount -a option in the command line but it fails to mount on boot.
I am running it on a new install of Debian 10.8
The line in /etc/fstab is:
[ipv4 address]:/[export] /data nfs rw,relatime,vers=4.2,rsize=262144,wsize=262144,hard,timeo=600,sec=sys,proto=tcp,_netdev 0 2
It seems likely that it is trying to mount the volume before the network is up but I have the _netdev option enabled that should remedy that.
Any suggestions?