fixes, t11, install in ad-hoc network
[automated-distro-installer] / fsf / dhcpd.conf
diff --git a/fsf/dhcpd.conf b/fsf/dhcpd.conf
new file mode 100644 (file)
index 0000000..9f12ec0
--- /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 209.51.188.0 netmask 255.255.255.0 {
+option routers 209.51.188.1;
+option domain-name "fsf.org";
+option domain-search "fsf.org";
+option domain-name-servers 209.51.188.16;
+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.fsf.org;
+filename "pxelinux.0";
+
+hardware ethernet ac:22:0b:1d:11:f9;
+# 1st mobo, mostly fails to boot
+#hardware ethernet 08:60:6e:10:f0:fe;
+fixed-address 209.51.188.193;
+option host-name "community0p";
+}
+
+
+default-lease-time 600;
+max-lease-time 7200;