X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;ds=sidebyside;f=dhcpd.conf;fp=dhcpd.conf;h=8a3ddd4b64607f56aca221bebd8927d262818522;hb=1e6019a5846160b3f62fc94357e16944b5b3527b;hp=0000000000000000000000000000000000000000;hpb=137ffae7de84a51c4b438ccf2fb50f5571f522a6;p=automated-distro-installer diff --git a/dhcpd.conf b/dhcpd.conf new file mode 100644 index 0000000..8a3ddd4 --- /dev/null +++ b/dhcpd.conf @@ -0,0 +1,35 @@ +# + +# iank: just guessing here. +authoritative; + + +deny unknown-clients; +option dhcp-max-message-size 2048; +use-host-decl-names on; + +subnet 10.0.44.0 netmask 255.255.255.0 { +option routers 10.0.44.1; +option domain-name "b8.nz"; +option domain-search "b8.nz"; +option domain-name-servers 8.8.8.8; +option ntp-servers 0.ubuntu.pool.ntp.org, 1.ubuntu.pool.ntp.org, ntp.ubuntu.com; +# iank: not sure why this is here, but not in +#server-name faiserver; +option time-offset -18000; # Eastern Standard Time +} + +host community0p { +next-server faiserver.b8.nz; +filename "pxelinux.0"; + +hardware ethernet 00:1f:16:14:01:d8; +# 1st mobo, mostly fails to boot +#hardware ethernet 08:60:6e:10:f0:fe; +fixed-address 10.0.44.2; +option host-name "x3"; +} + + +default-lease-time 600; +max-lease-time 7200;