fixes, t11, install in ad-hoc network
[automated-distro-installer] / dhcpd.conf
diff --git a/dhcpd.conf b/dhcpd.conf
new file mode 100644 (file)
index 0000000..8a3ddd4
--- /dev/null
@@ -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;