blob: 5be2237844d7391b46cbe1b2a503f131bab92ad9 (
plain)
- # This config is put together with valuable inspiration from the following sources:
- # http://cd-linux.org/nfs-howto.htm
- # http://www.netbsd.org/Documentation/network/netboot/intro.i386.html
- # http://www.pcxperience.org/thinclient/documentation/thinclientdesign.html
- # http://www.nominum.com/resources/faqs/dhcp-faq.html
- # http://www.bpbatch.org/docs/linux.html
- authoritative;
- #deny-unknown-clients;
- ddns-update-style none;
- use-host-decl-names on; # This avoids setting "option host-name" for each host
- #always-reply-rfc1048 on;
- default-lease-time 21600;
- max-lease-time 21600;
- option subnet-mask 255.255.255.0;
- option broadcast-address 192.168.102.255;
- option routers 192.168.102.1;
- option domain-name-servers 192.168.102.75;
- option domain-name "107b.dk";
- option time-servers ntp;
- option ntp-servers ntp;
- option log-servers log;
- subnet 192.168.102.0 netmask 255.255.255.0 {
- range 192.168.102.100 192.168.102.200;
- }
- include "/etc/dhcp3/dhcpd.hosts.fai";
- include "/etc/dhcp3/dhcpd.hosts.ltsp";
- include "/etc/dhcp3/dhcpd.hosts.grub";
- include "/etc/dhcp3/dhcpd.hosts.plain";
|