UEFI-based laptops not displaying the iPXE boot menu
I'm testing iPXE to replace the old PXE solution. For my test environment, I'm using CentOS 8 with iPXE, Dnsmasq and Apache installed from the repository. Dnsmasq is configured as a dhcpProxy because of an existing server.
iPXE appears to be working as both UEFI and BIOS-based laptops are able to pxe boot with iPXE. However, I can only get BIOS-based laptops to load to the boot menu.
This my dnsmasq configuration:
#disable dns server
port=0
#enable tftp server
enable-tftp
tftp-root=/tftpboot
#dhcp proxy mode. do not act as the authoratitive dhcp server
dhcp-range=192.168.140.0,proxy,255.255.252.0
#send disable multicast and broadcast discovery, and to download the boot file immediately
dhcp-option=vendor:PXEClient,6,2b
#set tag ENH if request comes from iPXE (iPXE user class)
dhcp-userclass=set:ENH,iPXE
#if request comes from firmware, load iPXE via TFTP
pxe-service=tag:!ENH,X86-64_EFI, UEFI: Chainload Boot - iPXE, ipxe.efi
pxe-service=tag:!ENH,X86PC, PC-DOS: Chainload Boot - iPXE, undionly.kpxe
#if request comes from iPXE, direct it to boot from boot.ipxe
pxe-service=tag:ENH,X86-64_EFI, UEFI: ipxe.efi - iPXE, http://192.168.140.21/menu/boot.ipxe
pxe-service=tag:ENH,X86PC, PC-DOS: undionly.kpxe - iPXE, http://192.168.140.21/menu/boot.ipxe
#2nd boot file
dhcp-boot=tag:ENH,http://192.168.140.21/menu/boot.ipxe
#enable logging
log-queries
log-dhcp