We have created 3 DNS servers in our local machine with primary server(10.42.0.80) , secondary(10.42.0.70) and cache(10.42.0.83). We are able to ping it perfectly but while doing Dynamic Dns update we are getting connection refused in header. We have done following entries:-
1) /etc/resolv.conf:-
nameserver 10.42.0.83 (it is cache server)
2) /etc/bind/named.conf.options file:-
forwarders
{
10.42.0.83;(it is cache server)
127.0.0.1;(it is localhost)
};
output in console:-
;; ->>HEADER<<- opcode: UPDATE, status: REFUSED, id: 39911
;; flags: qr ra ; qd: 1 an: 0 au: 0 ad: 0
;; ZONE:
;; thegeekstuff.net., type = SOA, class = IN
;; PREREQUISITES:
;; UPDATE RECORDS:
;; ADDITIONAL RECORDS:
;; Message size: 34 bytes
can anyone suggest why we are getting this connection refused error while doing Dynamic DNS update.