From dd572eae7639d05066e3d3f8fcde8988f5dbc7b1 Mon Sep 17 00:00:00 2001 From: Jonas Smedegaard Date: Wed, 6 Oct 2004 21:02:12 +0000 Subject: Add somewhat generic dhcpd addon snippets. --- dhcp3/dhcpd.pxe.host | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 dhcp3/dhcpd.pxe.host (limited to 'dhcp3/dhcpd.pxe.host') 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; +} -- cgit v1.2.3