summaryrefslogtreecommitdiff
path: root/dhcp3/dhcpd.conf
blob: 5be2237844d7391b46cbe1b2a503f131bab92ad9 (plain)
  1. # This config is put together with valuable inspiration from the following sources:
  2. # http://cd-linux.org/nfs-howto.htm
  3. # http://www.netbsd.org/Documentation/network/netboot/intro.i386.html
  4. # http://www.pcxperience.org/thinclient/documentation/thinclientdesign.html
  5. # http://www.nominum.com/resources/faqs/dhcp-faq.html
  6. # http://www.bpbatch.org/docs/linux.html
  7. authoritative;
  8. #deny-unknown-clients;
  9. ddns-update-style none;
  10. use-host-decl-names on; # This avoids setting "option host-name" for each host
  11. #always-reply-rfc1048 on;
  12. default-lease-time 21600;
  13. max-lease-time 21600;
  14. option subnet-mask 255.255.255.0;
  15. option broadcast-address 192.168.102.255;
  16. option routers 192.168.102.1;
  17. option domain-name-servers 192.168.102.75;
  18. option domain-name "107b.dk";
  19. option time-servers ntp;
  20. option ntp-servers ntp;
  21. option log-servers log;
  22. subnet 192.168.102.0 netmask 255.255.255.0 {
  23. range 192.168.102.100 192.168.102.200;
  24. }
  25. include "/etc/dhcp3/dhcpd.hosts.fai";
  26. include "/etc/dhcp3/dhcpd.hosts.ltsp";
  27. include "/etc/dhcp3/dhcpd.hosts.grub";
  28. include "/etc/dhcp3/dhcpd.hosts.plain";