Hi,
You can create an acl like:
Code:
acl "queries" { 192.168.0.0/24; !192.168.0.1;};
and use it (in the options part of named.conf) like:
Code:
allow-query {127.0.0.1; queries;};
This way localhost and the whole 192.168.0.0/24 network, except the 192.168.0.1 host, can query the server. You can do the same for allow-recursion if you want.
Regards