One zone not transfering.

David Botham dns at botham.net
Fri Feb 14 15:54:12 UTC 2003



> -----Original Message-----
> From: bind-users-bounce at isc.org [mailto:bind-users-bounce at isc.org] On
> Behalf Of Bill Heese
> Sent: Thursday, February 13, 2003 10:07 PM
> To: 'comp-protocols-dns-bind at isc.org '
> Subject: One zone not transfering.
> 
> Hi All,
> 
> Ok my question is:
> 
> Why would only one domain NOT transfer to my secondary server. I've
gone
> over the named.conf file... all the other zones are set up the same
way. I
> check /var/adm/messages and get the following errors. Please forgive
me if
> I'm overlooking something... I'm new to this. Thanks in Advance
> 
> Secondary server /var/adm/messages:
> 
> Feb 13 21:50:33 ns2.conairdns.net named[161]: [ID 295310
daemon.warning]
> Zone "2koolkats.com" (file bak.2koolkats.com): no SOA RR found
> Feb 13 21:50:33 ns2.conairdns.net named[161]: [ID 295310 daemon.error]
> slave
> zone "2koolkats.com" (IN) rejected due to errors (serial 0)
> 
> Primary server /var/adm/messages:
> 
> Feb 13 21:40:34 ns1.conairdns.net named[162]: [ID 295310
daemon.notice]
> denied AXFR from [192.168.19.2].32797 for "2koolkats.com" IN (acl)


It looks like the master name server is not allowing zone transfers from
the salve.  Make sure the ACL for the zone allows transfers from the
slave:

On the Master Name Server:

options {
        allow-transfer {192.168.1.5;};
};

and/or in the zone statement itself:

zone "2koolkats.com" {
	type master;
	allow-transfer {192.168.1.5;};
	file "zonefile.db";
};






More information about the bind-users mailing list