summaryrefslogtreecommitdiff
path: root/dhcp3/dhcpd_legolas.xenux.local.conf
blob: 0e989f4975da2c1dd04fcae2839ae3c5780b8f74 (plain)
  1. # dhcpd.conf
  2. #
  3. # DHCP configuration file for primary 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 primary server.
  17. failover peer "xenuxlocal" {
  18. primary;
  19. address 192.168.200.21;
  20. port 519;
  21. peer address 192.168.200.20;
  22. peer port 520;
  23. mclt 3600;
  24. max-response-delay 30;
  25. max-unacked-updates 10;
  26. load balance max seconds 3;
  27. # split 128;
  28. hba ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:
  29. 00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00;
  30. }
  31. # According to our policy, the dynamic address space starts
  32. # at .60 and ends at .229 giving 170 client addresses.
  33. # (See "System Description --> Network Model")
  34. shared-network XENUXLOCAL {
  35. subnet 192.168.200.0 netmask 255.255.255.0 {
  36. use-host-decl-names on;
  37. pool {
  38. failover peer "xenuxlocal"
  39. range 192.168.200.60 192.168.200.229;
  40. }
  41. # According to our policy, the printers address space starts
  42. # at .40 and ends at .59 giving 20 printer addresses.
  43. # (See "System Description --> Network Model")
  44. host epsonalc2000 {
  45. hardware ethernet 00:80:77:31:a2:6a;
  46. fixed-address 192.168.200.40;
  47. }
  48. }
  49. }