ich teste gerade einen neuen Server und hänge am PXE boot.
Im Handbuch stehen diese Optionen:
Code: Alles auswählen
filename "opsi/loader/opsi-netboot.x64.efi";
if substring (option vendor-class-identifier, 19, 1) = "0" {
filename "opsi/loader/opsi-netboot.x86.bios";
}
else if substring (option vendor-class-identifier, 19, 1) = "7" {
filename "opsi/loader/opsi-netboot.x64.efi";
}
else if substring (option vendor-class-identifier, 15, 5) = "00011" {
filename "opsi/loader/opsi-netboot.arm64.efi";
}Code: Alles auswählen
if substring (option vendor-class-identifier, 19, 1) = "0" {
filename "opsi/opsi-linux-bootimage/loader/opsi-netboot.bios";
}
else if substring (option vendor-class-identifier, 19, 1) = "7" {
filename "opsi/opsi-linux-bootimage/loader/shimx64.efi.signed";
}