summaryrefslogtreecommitdiff
path: root/dhcp3/dhcpd_legolas.xenux.local.conf
blob: 182550a318a59ede82db93efe7e55773b09bb2d1 (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. deny dynamic bootp clients;
  38. pool {
  39. failover peer "xenuxlocal";
  40. range 192.168.200.60 192.168.200.229;
  41. }
  42. # According to our policy, the printers address space starts
  43. # at .40 and ends at .59 giving 20 printer addresses.
  44. # (See "System Description --> Network Model")
  45. host epsonalc2000 {
  46. hardware ethernet 00:80:77:31:a2:6a;
  47. fixed-address 192.168.200.40;
  48. }
  49. }
  50. }