Advertisement
Guest User

Untitled

a guest
Sep 18th, 2021
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. root@infra1:/etc/bind# cat named.conf.internal-zones
  2. // New file to provide DNS for local network
  3.  
  4. // Secure updates
  5. include "/etc/bind/ddns-keyfile.key";
  6.  
  7. zone "lab.test" IN {
  8. type master;
  9. notify no;
  10. file "/etc/bind/db.lab.test";
  11. allow-update { key ddns-key; };
  12. // update-policy {
  13. // grant ddns-key zonesub A TXT DHCID;
  14. // };
  15. };
  16.  
  17. zone "10.10.10.in-addr.arpa" IN {
  18. type master;
  19. file "/etc/bind/db.10.10.10.in-addr.arpa";
  20. allow-update { key ddns-key; };
  21. // update-policy {
  22. // grant ddns-key zonesub A TXT DHCID;
  23. // };
  24. };
  25.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement