I am setting up NFSv3 server and I would like to have my servers /shared directory exported globally.
I want to have it available across several subnets and I wonder if I could streamline it better:
/etc/export
How could I share to the entire third octet without adding all 255 addresses?
192.168.***.***
I was thinking 192.168.0.0/24 but I think that only references the 192.168.0.1 subnet.
I like to create separate projects on subnets and want to have NFS access on temporary subnets I might create.
I want to have it available across several subnets and I wonder if I could streamline it better:
/etc/export
Code:
/shared -alldirs 192.168.1.0/24 192.168.50.0/24 192.168.100.0/24 192.168.111.0/24
How could I share to the entire third octet without adding all 255 addresses?
192.168.***.***
I was thinking 192.168.0.0/24 but I think that only references the 192.168.0.1 subnet.
I like to create separate projects on subnets and want to have NFS access on temporary subnets I might create.