Hi,
I'm setting up a DNS server, I've already succesfuly configured the master dns server but, I'm having troubles with the slave.
What I can't reach is the slave dns to automatically copy the zones from the primary.
I do not know what am I doing wrong. But if I add a zone at the primary and look at the secundary dns is not there.
Does someone has any ideas about how to fix this?
Thanks!
Ps: here is the secundary dns' named.conf.
// $FreeBSD: src/etc/namedb/named.conf,v 1.6.2.7 2003/02/13 13:16:51
keramida Exp $
options {
directory "/etc/namedb";
// allow-transfer "196.40.45.10" ;
// forward only;
forwarders {
127.0.0.1;
};
};
zone "." {
type hint;
file "named.root";
};
zone "0.0.127.IN-ADDR.ARPA" {
type slave;
file "localhost.rev";
masters {
196.40.45.10;
};
};
