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 777B

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