Greeting.
Currently I use NFSv3 and export all dataset individually. That's cumbersome, and NFSv4 has greater perfomance and I want it
I have exports like
/home/user/development
/mnt/s-drive
/mnt/s-drive/backup
NFSv4 demands a single root point, like / or /
But my exports doesn't. The way I solved this on Linux is by using bind mounts (which are nullfs mounts on FreeBSD).
The FreeBSD's nullfs can't recursively resolve nested mounts, like nullfs mount of /mnt/s-drive won't have contents of /mnt/s-drive/backup
I see only this solution: use / as root point and export whole tree. I don't like it, it will make exports cluttered.
What options do I have it just continue using NFSv3? I kinda need TCP and session timeouts, because link outages bring down my laptop
Currently I use NFSv3 and export all dataset individually. That's cumbersome, and NFSv4 has greater perfomance and I want it
I have exports like
/home/user/development
/mnt/s-drive
/mnt/s-drive/backup
NFSv4 demands a single root point, like / or /
But my exports doesn't. The way I solved this on Linux is by using bind mounts (which are nullfs mounts on FreeBSD).
The FreeBSD's nullfs can't recursively resolve nested mounts, like nullfs mount of /mnt/s-drive won't have contents of /mnt/s-drive/backup
I see only this solution: use / as root point and export whole tree. I don't like it, it will make exports cluttered.
What options do I have it just continue using NFSv3? I kinda need TCP and session timeouts, because link outages bring down my laptop