Guest User

Untitled

a guest
May 26th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. dhcpd.conf
  2.  
  3. ...
  4. ...
  5. authoritative;
  6. ddns-update-style interim;
  7. key dhcpupdate {
  8. algorithm hmac-md5;
  9. secret "fi1HKwB0RqSmyV4WGe4DrQ==";
  10. }
  11. ...
  12. zone domain.local {
  13. primary 10.100.10.5;
  14. key dhcpupdate;
  15. }
  16. zone 10.100.10.in-addr.arpa {
  17. key dhcpupdate;
  18. }
  19. ...
  20. group {
  21.  
  22. option domain-name-servers 10.100.10.5;
  23. option domain-name "some.domain.local";
  24.  
  25. ddns-domainname "home";
  26.  
  27. host db1.some.domain.local {
  28. hardware ethernet 55:55:55:55:11:5b;
  29. option host-name = "db1.some.domain.local";
  30. fixed-address 10.100.10.10;
  31. ddns-hostname "db1";
  32. }
  33. }
Add Comment
Please, Sign In to add comment