mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-10 15:28:11 +07:00
21 lines
629 B
Plaintext
21 lines
629 B
Plaintext
|
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";
|
||
|
}
|
||
|
}
|
||
|
}
|