summaryrefslogtreecommitdiff
path: root/dhcp3/dhcpd.pxe.host-mcast
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2004-10-06 21:02:12 +0000
committerJonas Smedegaard <dr@jones.dk>2004-10-06 21:02:12 +0000
commitdd572eae7639d05066e3d3f8fcde8988f5dbc7b1 (patch)
tree90f986bcb5f1cf21556478fe591942bce80ec666 /dhcp3/dhcpd.pxe.host-mcast
parentfa78451ebd444f11e98f81df5265e3c7415ef7fa (diff)
Add somewhat generic dhcpd addon snippets.
Diffstat (limited to 'dhcp3/dhcpd.pxe.host-mcast')
-rw-r--r--dhcp3/dhcpd.pxe.host-mcast12
1 files changed, 12 insertions, 0 deletions
diff --git a/dhcp3/dhcpd.pxe.host-mcast b/dhcp3/dhcpd.pxe.host-mcast
new file mode 100644
index 0000000..158e237
--- /dev/null
+++ b/dhcp3/dhcpd.pxe.host-mcast
@@ -0,0 +1,12 @@
+# Host-specific PXE options
+class "pxeclients" {
+ match if substring (option vendor-class-identifier, 0, 9) = "PXEClient";
+
+ # Keep identifier
+ option vendor-class-identifier "PXEClient";
+
+ option PXE.mtftp-ip 224.1.5.1;
+ option PXE.mtftp-cport 1758;
+ option PXE.mtftp-sport 1759;
+ vendor-option-space PXE;
+}