summaryrefslogtreecommitdiff
path: root/dhcp3/dhcpd.pxe.host
diff options
context:
space:
mode:
Diffstat (limited to 'dhcp3/dhcpd.pxe.host')
-rw-r--r--dhcp3/dhcpd.pxe.host13
1 files changed, 13 insertions, 0 deletions
diff --git a/dhcp3/dhcpd.pxe.host b/dhcp3/dhcpd.pxe.host
new file mode 100644
index 0000000..05c2399
--- /dev/null
+++ b/dhcp3/dhcpd.pxe.host
@@ -0,0 +1,13 @@
+# Host-specific PXE options
+class "pxe" {
+ match if substring (option vendor-class-identifier, 0, 9) = "PXEClient";
+
+ # Keep identifier
+ option vendor-class-identifier "PXEClient";
+
+ # At least one of the vendor-specific option must be set. We set
+ # the MCAST IP address to 0.0.0.0 to tell the bootrom to still use
+ # TFTP (address 0.0.0.0 is considered as "no address")
+ option PXE.mtftp-ip 0.0.0.0;
+ vendor-option-space PXE;
+}