I have created one new DNS server in lab and its working properly. Earlier we were using another DNS server for lab PC's as 10.20.30.xx. which is outside the lab premises. now issue with newly created as its not resolving query as previous. I am told by some to use forwarder option for this. By adding the below option in named.conf only forward lookups is working.
zone "hoethe.com" IN {
type forward;
forward only;
forwarders { 10.20.30.XX; };
};
zone "30.20.10.in-addr.arpa" IN {
type forward;
forward only;
forwarders { 10.20.30.xx };
};
Reverse lookups not working and getting the error as
** server can't find XX.30.20.10.in-addr.arpa.: NXDOMAIN
Can anyone explain why this is not working?