Advertisement
Guest User

Untitled

a guest
Jun 3rd, 2014
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. log-facility local7;
  2. ddns-update-style interim;
  3. do-forward-updates on;
  4. allow unknown-clients;
  5. ddns-updates on;
  6. ddns-domainname "mydomain.local";
  7. ddns-rev-domainname "in-addr.arpa";
  8. ignore client-updates;
  9. #allow bootp;
  10. #allow booting;
  11.  
  12. subnet 172.16.30.0 netmask 255.255.255.0 {
  13. authoritative;
  14. option routers 172.16.30.1;
  15. option subnet-mask 255.255.255.0;
  16. option domain-name "mydomain.local";
  17. option domain-name-servers 172.16.30.128, 172.16.30.128;
  18. option time-offset -25200;
  19. range 172.16.30.10 172.16.30.254;
  20. default-lease-time 14400;
  21. max-lease-time 14400;
  22. # next-server 172.16.30.128;
  23. }
  24.  
  25. key "ddnskey" {
  26. algorithm hmac-md5;
  27. secret "privatekeysecrethere";
  28. };
  29.  
  30. zone mydomain.local. {
  31. primary 127.0.0.1;
  32. key ddnskey;
  33. }
  34.  
  35. zone 30.16.172.in-addr.arpa. {
  36. primary 127.0.0.1;
  37. key ddnskey;
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement