Advertisement
bvek1

named.conf.local

Aug 19th, 2011
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  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. include "/etc/bind/named.conf.local";
  11. include "/etc/bind/named.conf.default-zones";
  12. root@ks367082:/etc/bind# cat named.conf.local
  13. //
  14. // Do any local configuration here
  15. //
  16.  
  17. // Consider adding the 1918 zones here, if they are not used in your
  18. // organization
  19. //include "/etc/bind/zones.rfc1918";
  20.  
  21.  
  22. zone "alexis-madrzejewski.com" {
  23. type master;
  24. file "/etc/bind/db.alexis-madrzejewski.com";
  25. allow-transfer {213.186.33.199;};
  26. allow-query{any;};
  27. notify yes;
  28. };
  29.  
  30. zone "tutoriel-arduino.fr" {
  31. type master;
  32. file "/etc/bind/db.tutoriel-arduino.fr";
  33. allow-transfer{213.186.33.199;};
  34. allow-query{any;};
  35. notify yes;
  36. };
  37.  
  38. zone "tutoriels-video.fr" {
  39. type master;
  40. file "/etc/bind/db.tutoriels-video.fr";
  41. allow-transfer{213.186.33.199;};
  42. allow-query{any;};
  43. notify yes;
  44. };
  45.  
  46. zone "chipncardtrick.fr" {
  47. type master;
  48. file "/etc/bind/db.chipncardtrick.fr";
  49. allow-transfer{213.186.33.199;};
  50. allow-query{any;};
  51. notify yes;
  52. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement