Click to See Complete Forum and Search --> : Dns Issue!!!


yev
07-12-2003, 01:21 PM
I am playing with DNS. Both of my boxes are running RH 8.0. I have setup one of them as a master for my domain of networkersource.com (192.168.0.10) and another one as a slave 192.168.0.20. Below are the portions of my named.conf file from both:

zone "networkersource.com" IN {
type master;
file "networkersource.zone";
allow-update {192.168.0.20; };
allow-transfer {192.168.0.20; };
--------------------------------------------------------
zone "networkersource.com" IN {
type slave;
file "networkersource.zone.bak";
masters { 192.18.0.10; };
----------------------------------------------------------
but the zone is not being transferred, even after I disabled iptables and made sure port 53 is open on both machines. below is an error message I get:
It's an interesting problem I was wondering if you might have any kind of insight into it.

Jul 12 10:22:13 localhost named[2242]: zone networkersource.com/IN: refresh: failure trying master 192.18.0.10#53: timed out
Jul 12 10:22:14 localhost kernel: device eth0 left promiscuous mode
Jul 12 10:22:28 localhost named[2242]: zone networkersource.com/IN: refresh: failure trying master 192.18.0.10#53: timed out
Jul 12 10:22:58 localhost last message repeated 2 times
Jul 12 10:22:58 localhost named[2242]: zone networkersource.com/IN: refresh: retry limit for master 192.18.0.10#53 exceeded

cowanrl
07-12-2003, 02:18 PM
You've got an error in your named.conf on the slave. It should read:

masters {192.168.0.10;};

not

masters {192.18.0.10;};

I can see it's not a typo in this post because it's showing up in your log file.