Thanks Dave for the suggestions.
I will give it a go here shortly.
How about something like:
in /etc/hosts.deny
portmap: ALL
in /etc/hosts.allow
portmap: *.domain.com
where serverA.domain.com and serverB-Z.domain.com could connect regardless of today's IP for that host?
Do you know if DNS or wildcards are permitted syntax or if it only allows for IP sets?
Question 2:
In /etc/hosts, should that be installed on the client as well?
I'd imagine the NFS server should have something similar to:
Code:
111.111.111.111 nfsserver.domain.com nfsserver
127.0.0.1 localhost
222.222.222.222 servera.domain.com servera
333.333.333.333 serverb.domain.com serverb
444.444.444.444 serverc.domain.com serverc
then the /etc/hosts on say serverA would simply be like:
Code:
222.222.222.222 servera.domain.com servera
127.0.0.1 localhost
111.111.111.111 nfsserver.domain.com nfsserver
as serverA has no reason to share filesystems with anything other than the main NFS server.