Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Replicate forward zones and views to slaves

Status
Not open for further replies.

JPSF

ISP
Jun 20, 2013
1
0
0
PT

Hi all,

I have 4 DNS servers (linux CentOS) 1 master and 3 slaves. Those DNS servers have a lot of forward zones on named.conf, what I need is, when I change or create a new forward zone or view on master replicate those zones to the 3 slaves without rsync.

named.conf file:

view "internal" {

match-clients { internalDNS; DNS; };
recursion yes;

//Test
zone "zone.com" in {
type forward;
forwarders { 1.1.1.1; 2.2.2.2; };
forward only;
};

//Test2
zone "zone2.com" in {
type forward;
forwarders { 3.3.3.3; 4.4.4.4; };
forward only;
};

};

If it is a master zone (with file) I don't have any problem the zone is replicated but the views and the forward zones don't go to slave servers.

Thanks,

João
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top