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