You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

named.conf.local 813B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. view "view-internal" {
  2. match-clients {
  3. "acl-internal";
  4. };
  5. allow-recursion {
  6. any;
  7. };
  8. also-notify {
  9. "masters-example.com-internal";
  10. };
  11. allow-transfer {
  12. key "key-internal";
  13. };
  14. allow-update {
  15. key "key-internal";
  16. };
  17. include "/etc/bind/named.conf.default-zones";
  18. include "/etc/bind/zones.rfc1918";
  19. include "/etc/bind/zones/named.conf.local.common";
  20. include "/etc/bind/zones/named.conf.local.internal";
  21. };
  22. view "view-external" {
  23. match-clients {
  24. "acl-external";
  25. };
  26. allow-recursion {
  27. none;
  28. };
  29. also-notify {
  30. "masters-example.com-external";
  31. };
  32. allow-transfer {
  33. key "key-external";
  34. };
  35. allow-update {
  36. key "key-external";
  37. };
  38. include "/etc/bind/zones/named.conf.local.common";
  39. include "/etc/bind/zones/named.conf.local.external";
  40. };