[KLUG Members] zone transfer problem was DNS (bind) question

Bill Katsma members@kalamazoolinux.org
26 Oct 2002 23:06:31 -0400


Here is the message I am getting in my log

Oct 26 22:02:26 www named[5744]: transfer of 'domainname.com/IN' from
199.XXX.XXX.XXX#53: failed while receiving responses: REFUSED
Oct 26 22:02:26 www named[5744]: transfer of 'domainname.com/IN' from
199.XXX.XXX.XXX#53: end of transfer

my zones in my primary named.conf:

zone "notworking.com" {
        type master;
        notify yes;
        file "pz/notworking.com";
        allow-transfer { 199.xxx.xxx.xxx; localhost; };
};

zone "workin.com" {
        type master;
        notify yes;
        file "pz/working.com";
        allow-transfer { 199.xxx.xxx.xxx; localhost; };
};



my zones in my primary named.conf:

zone "notworking.com" {
        type slave;
        file "pz/notworking.com";
        masters { 199.xxx.xxx.xxx; };
};

zone "working.com" {
        type slave;
        file "pz/working.com";
        masters { 199.xxx.xxx.xxx; };
};


Thnaks again