summaryrefslogtreecommitdiffstats
path: root/dhcpd.conf
diff options
context:
space:
mode:
Diffstat (limited to 'dhcpd.conf')
-rw-r--r--dhcpd.conf40
1 files changed, 0 insertions, 40 deletions
diff --git a/dhcpd.conf b/dhcpd.conf
deleted file mode 100644
index bc13813..0000000
--- a/dhcpd.conf
+++ /dev/null
@@ -1,40 +0,0 @@
-# dhcpd.conf for interface __INTERFACE__
-# generated by dyndhcpd/__VERSION__
-authoritative;
-ddns-update-style none;
-ignore client-updates;
-default-lease-time 21600;
-max-lease-time 43200;
-
-option domain-name "__DOMAINNAME__";
-
-allow booting;
-allow bootp;
-
-subnet __NETADDRESS__ netmask __NETMASK__ {
- option broadcast-address __BROADCAST__;
- option routers __ADDRESS__;
- #option routers __MINHOST__;
- option domain-name-servers __ADDRESS__;
- option time-servers __ADDRESS__;
-
- range dynamic-bootp __MINHOST__ __MAXHOST__;
-}
-
-# make sure we do not serve our own address
-host localhost {
- hardware ethernet de:ad:00:be:ef:00;
- fixed-address __ADDRESS__;
-}
-
-class "PXEClient" {
- match if substring(option vendor-class-identifier, 0, 9) = "PXEClient";
- next-server __ADDRESS__;
-
- # Options for iPXE
- if exists user-class and option user-class = "iPXE" {
- filename "http://__ADDRESS__:3928/default.ipxe";
- } else {
- filename "/ipxe/undi.kpxe";
- }
-}