- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- synchronize linux DNS server with WIN2000 DNS serv...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-26-2004 11:18 PM
тАО05-26-2004 11:18 PM
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 ?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-27-2004 12:42 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-28-2004 12:29 AM
тАО05-28-2004 12:29 AM
Re: synchronize linux DNS server with WIN2000 DNS server
in addition to the response above, you'll have to set the "BIND secondaries" option on the windows side.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-28-2004 04:17 AM
тАО05-28-2004 04:17 AM
Re: synchronize linux DNS server with WIN2000 DNS server
but where exactly should I set "BIND secondaries" by WIN2000 ?
can you write more about ?
greetings
chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-28-2004 04:52 AM
тАО05-28-2004 04:52 AM
Re: synchronize linux DNS server with WIN2000 DNS server
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-28-2004 07:07 AM
тАО05-28-2004 07:07 AM
Re: synchronize linux DNS server with WIN2000 DNS server
I've checked before my first answer and I didn't have to specify this "Bind secondaries" option.
If you have problem with synchronizing-
check that the linux server appears on the list of "allow synchronize to this servers"
or
specify allow synchronize to any server-less secure of course
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-28-2004 08:00 AM - last edited on тАО09-16-2024 02:21 AM by support_s
тАО05-28-2004 08:00 AM - last edited on тАО09-16-2024 02:21 AM by support_s
Re: synchronize linux DNS server with WIN2000 DNS server
I have a little problem to understand, what do you mean.
do you mean it should work without "select bind secondaries" at WIN2000 also ?
I've never setuped DNS on WIN2000 before and don't know this option ?
greetings
chris
- Tags:
- iLO_OA
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-28-2004 08:32 AM
тАО05-28-2004 08:32 AM
Re: synchronize linux DNS server with WIN2000 DNS server
check out http://support.microsoft.com/default.aspx?scid=kb;en-us;198409