Advertisement
Guest User

Untitled

a guest
Nov 14th, 2014
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. / prime the server with knowledge of the root servers
  2.  
  3. zone “mail.mydomain.com” {
  4. type master;
  5. file “file.mail.mydomain.com”;
  6. };
  7.  
  8. zone "." {
  9. type hint;
  10. file "/etc/bind/db.root";
  11. };
  12.  
  13. // be authoritative for the localhost forward and reverse zones, and for
  14. // broadcast zones as per RFC 1912
  15.  
  16. zone "localhost" {
  17. type master;
  18. file "/etc/bind/db.local";
  19. };
  20.  
  21. zone "127.in-addr.arpa" {
  22. type master;
  23. file "/etc/bind/db.127";
  24. };
  25.  
  26. zone "0.in-addr.arpa" {
  27. type master;
  28. file "/etc/bind/db.0";
  29. };
  30.  
  31. zone "255.in-addr.arpa" {
  32. type master;
  33. file "/etc/bind/db.255";
  34. };
  35.  
  36.  
  37.  
  38. "/etc/bind/named.conf.default-zones" 37L, 595C
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement