Share Pastebin
Guest
Public paste!

root

By: a guest | Feb 9th, 2010 | Syntax: None | Size: 1.10 KB | Hits: 38 | Expires: Never
Copy text to clipboard
  1. // This is the primary configuration file for the BIND DNS server named.
  2. //
  3. // Please read /usr/share/doc/bind9/README.Debian.gz for information on the
  4. // structure of BIND configuration files in Debian, *BEFORE* you customize
  5. // this configuration file.
  6. //
  7. // If you are just adding zones, please do that in /etc/bind/named.conf.local
  8.  
  9. include "/etc/bind/named.conf.options";
  10.  
  11. // prime the server with knowledge of the root servers
  12. zone "." {
  13.         type hint;
  14.         file "/etc/bind/db.root";
  15. };
  16.  
  17. // be authoritative for the localhost forward and reverse zones, and for
  18. // broadcast zones as per RFC 1912
  19.  
  20. zone "localhost" {
  21.         type master;
  22.         file "/etc/bind/db.local";
  23. };
  24.  
  25. zone "127.in-addr.arpa" {
  26.         type master;
  27.         file "/etc/bind/db.127";
  28. };
  29.  
  30. zone "0.in-addr.arpa" {
  31.         type master;
  32.         file "/etc/bind/db.0";
  33. };
  34.  
  35. zone "255.in-addr.arpa" {
  36.         type master;
  37.         file "/etc/bind/db.255";
  38. };
  39.  
  40.  
  41. zone "younes.mey" {
  42.        type master;
  43.        file "/etc/bind/zones/younes.mey.hosts";
  44. };
  45.  
  46. zone "1.168.192.in-addr.arpa" {
  47.        type master;
  48.        file "/etc/bind/zones/rev.192.168.1.in-addr.arpa";
  49. };
  50.  
  51.  
  52.  
  53. include "/etc/bind/named.conf.local";