various fixes
[automated-distro-installer] / dhcpd.conf
1 #
2
3 # iank: just guessing here.
4 authoritative;
5
6
7 deny unknown-clients;
8 option dhcp-max-message-size 2048;
9 use-host-decl-names on;
10
11 subnet 10.0.44.0 netmask 255.255.255.0 {
12 option routers 10.0.44.1;
13 option domain-name "b8.nz";
14 option domain-search "b8.nz";
15 option domain-name-servers 8.8.8.8;
16 option ntp-servers 0.ubuntu.pool.ntp.org, 1.ubuntu.pool.ntp.org, ntp.ubuntu.com;
17 # iank: not sure why this is here, but not in
18 #server-name faiserver;
19 option time-offset -18000; # Eastern Standard Time
20 }
21
22 host community0p {
23 next-server faiserver.b8.nz;
24 filename "pxelinux.0";
25
26 hardware ethernet 00:1f:16:14:01:d8;
27 # 1st mobo, mostly fails to boot
28 #hardware ethernet 08:60:6e:10:f0:fe;
29 fixed-address 10.0.44.2;
30 option host-name "x3";
31 }
32
33
34 default-lease-time 600;
35 max-lease-time 7200;