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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

syncronize linux DNS with WIN2000 DNS

Status
Not open for further replies.

anonimous

IS-IT--Management
Sep 22, 2003
31
CH
hi

at our division I've setup 2 internal DNS server BIND 9.2.2 on linux SUSE

ns1.de.maindomain.net (master) 10.41.1.10

ns2.de.maindomain.net (slave) 192.168.0.5

for the internal domain de.maindomain.net


ns1.de.maindomain.net MASTER:

zone "de.maindomain.net" {
type master;
file "/var/lib/named/de.maindomain.net.hosts";
allow-update {
10.41.0.0/24;
};
also-notify {
192.168.0.5;
};
};

zone "0.41.10.in-addr.arpa" {
type master;
file "/var/lib/named/10.41.0.rev";
allow-update {
10.41.0.0/24;
};
also-notify {
192.168.0.5;
};
};


ns2.de.maindomain.net SLAVE:

zone "de.maindomain.net" {
type slave;
file "/var/lib/named/de.maindomain.net.hosts";
masters {
10.41.1.10;
};
};

zone "0.41.10.in-addr.arpa" {
type slave;
file "/var/lib/named/10.41.0.rev";
masters {
10.41.1.10;
};
};


now I should synchronize my both dns server with a master namesever for maindomain.net:

dns1.maindomain.net 10.1.1.1 (WIN2000) tu update zone entries automatically


ist it enough to create 2 slave zones at ns1.de.maindomain.net and ns2.de.maindomain.net ?

zone "maindomain.net" {
type slave;
file "/var/lib/named/maindomain.net.hosts";
masters {
10.1.1.1;
};
};

zone "1.1.10.in-addr.arpa" {
type slave;
file "/var/lib/named/10.1.1.rev";
masters {
10.1.1.1;
};
};

and put notify 10.41.1.10 and 192.168.0.5 by WIN2000 DNS ?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top