]> git.deb.at Git - debienna.git/blob - OdysseyDhcpdConf/index.mdwn
use unix newlines everywhere
[debienna.git] / OdysseyDhcpdConf / index.mdwn
1 /etc/dhcp3/dhcpd.conf for dhcp3-server that runs on odyssey to allow netbooting together with atftpd and di-netboot-assitant.
2
3 {{{
4 ddns-update-style none;
5
6 not authoritative;
7 default-lease-time 604800;
8 max-lease-time 604800;
9
10 option domain-name "quintessenz.net";
11 option domain-name-servers 192.168.100.1;
12
13 next-server 192.168.100.1;
14 server-name "192.168.100.1";
15 filename "pxelinux.0";
16
17 subnet 192.168.100.0 netmask 255.255.255.0 {
18   range 192.168.100.100 192.168.100.200;
19   option routers 192.168.100.1;
20 }
21 }}}