Advertisement
Guest User

named.conf.default-zone

a guest
Jul 21st, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. // prime the server with knowledge of the root servers
  2. zone "." {
  3. type hint;
  4. file "/etc/bind/db.root";
  5. };
  6.  
  7. // be authoritative for the localhost forward and reverse zones, and for
  8. // broadcast zones as per RFC 1912
  9.  
  10. zone "kucing.meong" {
  11. type master;
  12. file "/etc/bind/db.kucing.meong";
  13. # file "/etc/bind/db.local";
  14. };
  15.  
  16. zone "127.in-addr.arpa" {
  17. type master;
  18. file "/etc/bind/db.127";
  19. };
  20.  
  21. zone "137.168.192.in-addr.arpa" {
  22. type master;
  23. file "/etc/bind/db.kucing";
  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. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement