I was adding a new slave DNS server the other day on bind 9.3 and I was getting this error “refused notify from non-master”. It seems that if you are using bind 9.3 it tries to send a notify to itself even if it is a slave. In the options section of named.conf you need to add an allow-notify for it’s own IP. Substitute 192.168.0.1 for your server’s IP.
options {
//otherstuff
allow-notify {192.168.0.1;};
};
Leave a Reply