named.conf 852 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. include "/etc/bind/ddns.key";
  2. acl lan {
  3. 10.0.0.0/8;
  4. localhost;
  5. localnets;
  6. };
  7. options {
  8. directory "/var/bind";
  9. forwarders {
  10. 1.1.1.1;
  11. 1.0.0.1;
  12. };
  13. listen-on { any; };
  14. listen-on-v6 { none; };
  15. allow-transfer { none; };
  16. allow-update { none; };
  17. recursion yes;
  18. allow-query { lan; };
  19. };
  20. zone "slurm.ch" IN {
  21. type master;
  22. notify no;
  23. file "/etc/bind/zones/slurm.ch.zone";
  24. allow-update { key DNS_UPDATE; };
  25. };
  26. zone "10.in-addr.arpa" {
  27. type master;
  28. notify no;
  29. file "/etc/bind/zones/lan.reverse.zone";
  30. allow-update { key DNS_UPDATE; };
  31. };
  32. zone "86.138.11.185.in-addr.arpa" {
  33. type master;
  34. file "/etc/bind/zones/flexo.reverse.zone";
  35. };
  36. zone "145.168.214.91.in-addr.arpa" {
  37. type master;
  38. file "/etc/bind/zones/fender.reverse.zone";
  39. };
  40. zone "104.92.33.178.in-addr.arpa" {
  41. type master;
  42. file "/etc/bind/zones/fnog.reverse.zone";
  43. };