Advertisement
dikshie

slaving-root

Dec 26th, 2012
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. /* Slaving the following zones from the root name servers has some
  2. significant advantages:
  3. 1. Faster local resolution for your users
  4. 2. No spurious traffic will be sent from your network to the roots
  5. 3. Greater resilience to any potential root server failure/DDoS
  6.  
  7. On the other hand, this method requires more monitoring than the
  8. hints file to be sure that an unexpected failure mode has not
  9. incapacitated your server. Name servers that are serving a lot
  10. of clients will benefit more from this approach than individual
  11. hosts. Use with caution.
  12.  
  13. To use this mechanism, uncomment the entries below, and comment
  14. the hint zone above.
  15.  
  16. As documented at http://dns.icann.org/services/axfr/ these zones:
  17. "." (the root), ARPA, IN-ADDR.ARPA, IP6.ARPA, and ROOT-SERVERS.NET
  18. are availble for AXFR from these servers on IPv4 and IPv6:
  19. xfr.lax.dns.icann.org, xfr.cjr.dns.icann.org
  20. */
  21.  
  22. zone "." {
  23. type slave;
  24. file "/etc/namedb/slave/root.slave";
  25. masters {
  26. 192.5.5.241; // F.ROOT-SERVERS.NET.
  27. };
  28. notify no;
  29. };
  30.  
  31. zone "arpa" {
  32. type slave;
  33. file "/etc/namedb/slave/arpa.slave";
  34. masters {
  35. 192.5.5.241; // F.ROOT-SERVERS.NET.
  36. };
  37. notify no;
  38. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement