Guest User

Untitled

a guest
May 26th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. #
  2. # DHCP Server Configuration file.
  3. # see /usr/share/doc/dhcp*/dhcpd.conf.sample
  4. #
  5.  
  6. # Global options
  7. ddns-update-style interim;
  8.  
  9. failover peer "dhcp-failover"{
  10. primary;
  11. address 10.151.42.102;
  12. peer address 10.151.42.202;
  13. port 647;
  14. peer port 647;
  15. max-response-delay 30;
  16. max-unacked-updates 10;
  17.  
  18. load balance max seconds 3;
  19. mclt 1800;
  20. split 128;
  21. }
  22.  
  23.  
  24. subnet 10.151.42.0 netmask 255.255.255.0 {
  25. option routers 10.151.42.254;
  26. option domain-name-servers 10.152.42.254, 129.21.3.17;
  27. option domain-name "maul16.labs";
  28. pool {
  29. failover peer "dhcp-failover";
  30. deny dynamic bootp clients;
  31. range 10.151.42.40 10.151.42.42;
  32. range 10.151.42.46 10.151.42.60;
  33. }
  34. }
  35.  
  36. subnet 10.151.41.0 netmask 255.255.255.0 {
  37. option routers 10.151.41.254;
  38. option domain-name-servers 10.152.42.254, 129.21.3.17;
  39. option domain-name "maul16.labs";
  40. pool {
  41. failover peer "dhcp-failover";
  42. deny dynamic bootp clients;
  43. range 10.151.41.40 10.151.41.42;
  44. range 10.151.41.46 10.151.41.60;
  45. }
  46. }
Add Comment
Please, Sign In to add comment