summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2015-06-03 21:10:23 +0200
committerGravatar Christian Hesse <mail@eworm.de>2015-06-03 21:10:23 +0200
commitd3fda7698f46592208fbb215f89c965cb97098c5 (patch)
tree968d88163abfbe149b663da482db9660afadfb5f
parent80bfc5945e44cdd082376d92a55f38f53c566d58 (diff)
downloaddyndhcpd-d3fda7698f46592208fbb215f89c965cb97098c5.tar.gz
dyndhcpd-d3fda7698f46592208fbb215f89c965cb97098c5.tar.zst
reorganize dhcpd.conf
-rw-r--r--config/dhcpd.conf81
1 files changed, 42 insertions, 39 deletions
diff --git a/config/dhcpd.conf b/config/dhcpd.conf
index 1494461..6444f16 100644
--- a/config/dhcpd.conf
+++ b/config/dhcpd.conf
@@ -1,6 +1,8 @@
# dhcpd.conf for interface __INTERFACE__
# generated by dyndhcpd/__VERSION__
+include "/etc/dyndhcpd/ipxe-options.conf";
+
authoritative;
ddns-update-style none;
ignore client-updates;
@@ -9,64 +11,65 @@ max-lease-time 43200;
option domain-name "__DOMAINNAME__";
-subnet __NETADDRESS__ netmask __NETMASK__ {
- option broadcast-address __BROADCAST__;
- option routers __ADDRESS__;
- 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__;
}
-include "/etc/dyndhcpd/ipxe-options.conf";
-
class "PXEClient" {
match if substring(option vendor-class-identifier, 0, 9) = "PXEClient";
allow booting;
allow bootp;
+}
- next-server __ADDRESS__;
+subnet __NETADDRESS__ netmask __NETMASK__ {
+ option broadcast-address __BROADCAST__;
+ option routers __ADDRESS__;
+ option domain-name-servers __ADDRESS__;
+ option time-servers __ADDRESS__;
+
+ pool {
+ next-server __ADDRESS__;
- # Disable ProxyDHCP, we're in control of the primary DHCP server.
- option ipxe.no-pxedhcp 1;
+ # Disable ProxyDHCP, we're in control of the primary DHCP server.
+ option ipxe.no-pxedhcp 1;
- # Make sure the iPXE we're loading supports what we need,
- # if not load a full-featured version.
- if exists ipxe.http
- and exists ipxe.menu
- and ((exists ipxe.pxe
- and exists ipxe.bzimage
- and exists ipxe.elf)
- or (exists ipxe.efi)) {
- # Everything is fine, just send the boot configuration file.
- filename "http://__ADDRESS__:3928/default.ipxe";
- } elsif exists user-class and option user-class = "iPXE" {
- # We're already using iPXE, but not a feature-full version,
- # and possibly an out-of-date version from ROM, so load a more
- # complete version with native drivers.
- if option arch = 00:06 {
+ # Make sure the iPXE we're loading supports what we need,
+ # if not load a full-featured version.
+ if exists ipxe.http
+ and exists ipxe.menu
+ and ((exists ipxe.pxe
+ and exists ipxe.bzimage
+ and exists ipxe.elf)
+ or (exists ipxe.efi)) {
+ # Everything is fine, just send the boot configuration file.
+ filename "http://__ADDRESS__:3928/default.ipxe";
+ } elsif exists user-class and option user-class = "iPXE" {
+ # We're already using iPXE, but not a feature-full version,
+ # and possibly an out-of-date version from ROM, so load a more
+ # complete version with native drivers.
+ if option arch = 00:06 {
+ filename "/ipxe/efi-i386.efi";
+ } elsif option arch = 00:07 {
+ filename "/ipxe/efi-x86_64.efi";
+ } else {
+ filename "/ipxe/ipxe.pxe";
+ }
+ } elsif exists user-class and option user-class = "gPXE" {
+ # If someone has an old version of gPXE burned into their ROM,
+ # load a more recent iPXE
+ filename "/ipxe/ipxe.pxe";
+ } elsif option arch = 00:06 {
filename "/ipxe/efi-i386.efi";
} elsif option arch = 00:07 {
filename "/ipxe/efi-x86_64.efi";
} else {
filename "/ipxe/ipxe.pxe";
}
- } elsif exists user-class and option user-class = "gPXE" {
- # If someone has an old version of gPXE burned into their ROM,
- # load a more recent iPXE
- filename "/ipxe/ipxe.pxe";
- } elsif option arch = 00:06 {
- filename "/ipxe/efi-i386.efi";
- } elsif option arch = 00:07 {
- filename "/ipxe/efi-x86_64.efi";
- } else {
- filename "/ipxe/ipxe.pxe";
+
+ range dynamic-bootp __MINHOST__ __MAXHOST__;
}
}
+