X-Git-Url: https://iankelling.org/git/?p=automated-distro-installer;a=blobdiff_plain;f=fsf%2Fdhcpd.conf;fp=fsf%2Fdhcpd.conf;h=9f12ec03ab990b53fa30f03ef35ddf244bc534c5;hp=0000000000000000000000000000000000000000;hb=1e6019a5846160b3f62fc94357e16944b5b3527b;hpb=137ffae7de84a51c4b438ccf2fb50f5571f522a6 diff --git a/fsf/dhcpd.conf b/fsf/dhcpd.conf new file mode 100644 index 0000000..9f12ec0 --- /dev/null +++ b/fsf/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 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;