khuedoan-homelab/metal/roles/pxe-server/templates/dhcp/dhcpd.conf.j2

21 lines
629 B
Plaintext
Raw Normal View History

option space pxelinux;
option pxelinux.magic code 208 = string;
option pxelinux.configfile code 209 = text;
option pxelinux.pathprefix code 210 = text;
option pxelinux.reboottime code 211 = unsigned integer 32;
option architecture-type code 93 = unsigned integer 16;
subnet {{ subnet }} netmask {{ netmask }} {
option routers {{ gateway }};
range {{ range_start }} {{ range_end }};
class "pxeclients" {
match if substring (option vendor-class-identifier, 0, 9) = "PXEClient";
next-server {{ pxe_server }};
if option architecture-type = 00:07 {
filename "grubx64.efi";
}
}
}