summaryrefslogtreecommitdiff
path: root/dhcp3/dhcpd.pxe.host
blob: 05c239904fb0634863badb34d2a98e4043468e64 (plain)
  1. # Host-specific PXE options
  2. class "pxe" {
  3. match if substring (option vendor-class-identifier, 0, 9) = "PXEClient";
  4. # Keep identifier
  5. option vendor-class-identifier "PXEClient";
  6. # At least one of the vendor-specific option must be set. We set
  7. # the MCAST IP address to 0.0.0.0 to tell the bootrom to still use
  8. # TFTP (address 0.0.0.0 is considered as "no address")
  9. option PXE.mtftp-ip 0.0.0.0;
  10. vendor-option-space PXE;
  11. }