From be385dccff49303dd9159bccf8552d44fcc2e451 Mon Sep 17 00:00:00 2001 From: Jean-Gabriel Gill-Couture Date: Thu, 4 Sep 2025 23:24:03 -0400 Subject: [PATCH] fix: pxe boot for undionly client should use pxe config even if arch is bios --- opnsense-config/src/modules/dnsmasq.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opnsense-config/src/modules/dnsmasq.rs b/opnsense-config/src/modules/dnsmasq.rs index 5529300..c762f82 100644 --- a/opnsense-config/src/modules/dnsmasq.rs +++ b/opnsense-config/src/modules/dnsmasq.rs @@ -296,7 +296,7 @@ dhcp-boot=tag:efi,tag:!ipxe,{efi_filename}{tftp_str} dhcp-boot=tag:ipxe,{ipxe_filename}{tftp_str} # Provide undionly to legacy bios clients -dhcp-boot=tag:bios,{bios_filename}{tftp_str} +dhcp-boot=tag:bios,tag:!ipxe,{bios_filename}{tftp_str} " ); info!("Writing configuration file to {DNS_MASQ_PXE_CONFIG_FILE}");