Actions
Feature #14920
closedChange dhcpd.conf to support EFI loaders
Description
Default DHCPD configuration must be changed in order to allow booting unknown UEFI hosts to something like:
option arch code 93 = unsigned integer 16; # RFC4578
class "pxeclients" {
match if substring (option vendor-class-identifier, 0, 9) = "PXEClient";
next-server 10.0.0.1;
if option arch = 00:06 {
filename "grub2/bootia32.efi";
} else if option arch = 00:07 {
filename "grub2/bootx64.efi";
} else if option arch = 00:09 {
filename "grub2/bootx64.efi";
} else {
filename "pxelinux.0";
}
}
Updated by Lukas Zapletal over 9 years ago
- Related to Feature #12635: Options to deploy Grub and PXELinux EFI loaders in TFTP root added
Updated by Lukas Zapletal over 9 years ago
- Related to Tracker #431: [TRACKER] UEFI PXE support added
Updated by Lukas Zapletal over 9 years ago
Using shim.efi is perhaps better default than loading Grub directly.
Updated by Lukas Zapletal over 9 years ago
- Description updated (diff)
Adding iPXE user class to support direct iPXE VM booting.
Updated by Lukas Zapletal over 9 years ago
- Description updated (diff)
Converted to spaces (from tabs).
Updated by Lukas Zapletal over 9 years ago
- Description updated (diff)
Removed the iPXE stuff, this belongs in separate ticket really.
Updated by Anonymous about 9 years ago
- Status changed from New to Closed
- % Done changed from 0 to 100
Applied in changeset puppet-dhcp|6d0140778b68808b31c1c4a186f3e9b034163494.
Updated by Dominic Cleal about 9 years ago
- Translation missing: en.field_release set to 189
Actions