- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- DNS SLAVE problem
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
Forums
Discussions
Discussions
Discussions
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
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
11-28-2005 10:46 PM
11-28-2005 10:46 PM
on my linux DNS master for ch.domain.net,
I've created a SLAVE ZONE for the root domain: domain.net
zone "domain.net" {
type slave;
file "/var/cache/bind/domain.net.hosts";
masters {
212.X.X.25;
212.X.X.26;
};
};
it works well, the root Zone will be synchronized, but I have following problem:
the master dns servers will be reached over the vpn tunnel.
if the vpn tunnel goes down, I cannot nslookup any server from this Zone.
howto make this zone available when the vpn tunnel is down ?
I have BIND 9.2.4
kind regards
chris
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2005 11:39 PM
11-28-2005 11:39 PM
Re: DNS SLAVE problem
On the master server:
Do you have this code in named.conf ??
options {
directory "/var/named";
// query-source address * port 53;
allow-transfer { localhost; 10.1.10.1;};
The slave servers may not be getting any information.
For the slave server to work while the vpn tunnel is down, it must have the allow-transfer options correct and it must be reachable while the vpn tunnel is down.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2005 12:11 AM
11-29-2005 12:11 AM
Solutionforwarders to get the root server information.
So, you should just add "forward only;" to the options { } section of your named.conf on slave machine.
Regards,
Sergejs
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2005 05:30 AM
11-29-2005 05:30 AM
Re: DNS SLAVE problem
Do you have the slaves listed as DNS servers on the client configuration?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2005 09:56 AM
11-29-2005 09:56 AM
Re: DNS SLAVE problem
Slave is linux
I changed on the SLAVE from:
forwarders { 83.X.X.10; 83.X.X.11; 83.X.X.12; };
forward first;
to:
forwarders { 83.X.X.10; 83.X.X.11; 83.X.X.12; };
forward only;
is it correct now ?
SLAVE DNS servers are listed on the client configuration
greetings
chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2005 08:42 PM
11-29-2005 08:42 PM
Re: DNS SLAVE problem
How you are doing it is not how we're doing it in my shop.
That doesn't mean it won't work, just that I'm not totally familiar with your methodology.
A typical slave configuration by me:
zone "blah.com" {
type slave;
file "blah.com.zone";
masters {
10.xx.xx.xx;
};
};
I suggest at this point you test.
BIND 9.2
My setup is different as both DNS servers sit in a DMZ and serve the public internet and transfer data to a server inside the firewall.
Good Luck.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2005 10:42 PM
11-29-2005 10:42 PM