- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- create a stub zone on BIND9
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
тАО03-05-2009 03:25 AM
тАО03-05-2009 03:25 AM
At the moment our DNS servers are authorative for the main domain via slave zones, which will be generating unnecessary replication traffic.
Howto create stub zone instead of slave zone on BIND 9.3.4?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-05-2009 05:31 AM
тАО03-05-2009 05:31 AM
SolutionJust remember, that with secondary zones, you also have redundancy, and if the zones are static, then you won't get mostly traffic.
http://www.zytrax.com/books/dns/ch4/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-26-2009 08:54 AM
тАО03-26-2009 08:54 AM
Re: create a stub zone on BIND9
zone "mydomain.net" {
type forward;
forwarders {
10.10.100.3;
10.10.100.4;
};
};
but my BIND seems not to cache the queries.
how to create a forward zone to cache queries in case the forwardes are unreachable?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-26-2009 10:51 AM
тАО03-26-2009 10:51 AM
Re: create a stub zone on BIND9
NS records are not cached.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-26-2009 03:18 PM
тАО03-26-2009 03:18 PM
Re: create a stub zone on BIND9
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-27-2009 05:34 AM
тАО03-27-2009 05:34 AM
Re: create a stub zone on BIND9
zone domain_name IN {
type stub;
file path_name;
masters { ip_addr; } ;
};
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-29-2009 08:46 AM
тАО03-29-2009 08:46 AM
Re: create a stub zone on BIND9
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-30-2009 01:36 AM
тАО03-30-2009 01:36 AM
Re: create a stub zone on BIND9
If there is a network problem, the data you'll need may or may not be in the cache, depending on previous traffic and TTL values.
Slave zones are the only way to guarantee that your server has a full up-to-date copy of the master server's zone. If the amount of replication traffic is a problem, you should examine the reasons for it.
If the replication traffic is caused by a large number of dynamic DNS updates, you should consider putting the workstations (which usually create the most of the DNS updates) into a separate zone (a sub-domain). Then you can be a slave for the zone that has the server addresses only.
If there are not that much DDNS updates, another reason for excessive replication traffic might be poorly-chosen time values in the SOA record of the zone. These values determine how often the slaves check if the master zone has been updated. If your master server can send DNS NOTIFY messages to the slaves, you can set the update-check timeouts to reasonably large values.
Does your master server support incremental DNS zone transfers (RFC 1995, IXFR)? If it doesn't, any change in the domain causes the slaves to transfer the entire zone file from the master. If incremental zone transfers are supported, only the changes are transferred. That should cut back the amount of zone transfer traffic.
MK