Hi, All
I’m trying to replace dhcp server from freebsd vm to vyos. but I met a problem that is to setup pxe boot option for WDS.How to let the dhcp server support pxe and uefi boot at the same time ?
class "pxeclient"{
match if substring(option vendor-class-identifier, 0, 9) = "PXEClient";
if substring (option vendor-class-identifier,15,5)="00000" {
#BIOS client
filename "boot\\x86\\wdsnbp.com";
}
elsif substring (option vendor-class-identifier, 15,5)="00006" {
#EFI client 32bit
filename "boot\\x86\\wdsmgfw.efi";
}
else
{
# default to EFI 64 bit
filename "boot\\x64\\wdsmgfw.efi";
}
}
Yours Sincerely!
Steve Dong