summaryrefslogtreecommitdiff
path: root/dhcp3/dhcpd_gandalf.xenux.local.conf
blob: 2e04839d15e8e09520fa8e4f9571c18cbd39a66b (plain)
  1. # dhcpd.conf
  2. #
  3. # DHCP configuration file for secondary DHCP server in
  4. # the xenux.local domain.
  5. #
  6. ddns-update-style none;
  7. default-lease-time 1200;
  8. max-lease-time 7200;
  9. authoritative;
  10. log-facility local7;
  11. option domain-name "xenux.local";
  12. option domain-name-servers 192.168.200.20, 212.54.64.170, 212.54.64.171;
  13. option subnet-mask 255.255.255.0;
  14. option routers 192.168.200.1;
  15. option netbios-name-servers 192.168.200.20;
  16. # This is for failover capabillities for the secondary server.
  17. failover peer "xenuxlocal" {
  18. secondary;
  19. address 192.168.200.20;
  20. port 520;
  21. peer address 192.168.200.21;
  22. peer port 519;
  23. max-response-delay 30;
  24. max-unacked-updates 10;
  25. load balance max seconds 3;
  26. }
  27. shared-network XENUXLOCAL {
  28. subnet 192.168.200.0 netmask 255.255.255.0 {
  29. use-host-decl-names on;
  30. pool {
  31. failover peer "xenuxlocal"
  32. # According to our policy, the dynamic address space starts
  33. # at .60 and ends at .229 giving 170 client addresses.
  34. # (See "System Description --> Network Model")
  35. range 192.168.200.60 192.168.200.229;
  36. }
  37. # According to our policy, the printers address space starts
  38. # at .40 and ends at .59 giving 20 printer addresses.
  39. # (See "System Description --> Network Model")
  40. host epsonalc2000 {
  41. hardware ethernet 00:80:77:31:a2:6a;
  42. fixed-address 192.168.200.40;
  43. }
  44. }
  45. }