This repository has been archived on 2023-07-28. You can view files and clone it, but cannot push or open issues or pull requests.
pxe-server/dhcpd.conf

24 lines
408 B
ISCdhcpd
Raw Permalink Normal View History

2022-07-29 10:42:54 +02:00
# directives needed in ISC's dhcpd.conf
...
option arch code 93 = unsigned integer 16;
allow booting;
allow bootp;
subnet <your subnet> {
...
# following line: 00:06 = efi32 ; 00:07 = efi64
if option arch = 00:07 {
filename "efi64/syslinux.efi";
} else {
filename "bios/pxelinux.0";
#filename "bios/images/archlinux/ipxe.pxe";
}
next-server <IP of PXE server>;
...
}
...