iPXE discussion forum

Full Version: IPXE Booting Error
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
HP Server DL380G7 Model

NOT Local Disk -> IPXE OS Booting OK!

IPXE OS Booting > Add Local Disk
Embedded LOM NIC Network Boot >iPXE ok > DHCP ok > get a iSCSI IQN path > Black Screen >IPXE OS Booting Error



dhcpd.conf

ddns-update-style interim;
ignore client-updates;
allow booting;
allow bootp;
authoritative;

option space ipxe;
option ipxe-encap-opts code 175 = encapsulate ipxe;
option ipxe.keep-san code 8 = unsigned integer 8;
option iscsi-initiator-iqn code 203 = string;
option ipxe.priority code 1 = signed integer 8;
option ipxe.skip-san-boot code 9 = unsigned integer 8;
option ipxe.syslogs code 85 = string;
option ipxe.cert code 91 = string;
option ipxe.privkey code 92 = string;
option ipxe.crosscert code 93 = string;
option ipxe.no-pxedhcp code 176 = unsigned integer 8;
option ipxe.bus-id code 177 = string;
option ipxe.bios-drive code 189 = unsigned integer 8;
option ipxe.username code 190 = string;
option ipxe.password code 191 = string;
option ipxe.reverse-username code 192 = string;
option ipxe.reverse-password code 193 = string;
option ipxe.version code 235 = string;
option ipxe.pxeext code 16 = unsigned integer 8;
option ipxe.iscsi code 17 = unsigned integer 8;
option ipxe.aoe code 18 = unsigned integer 8;
option ipxe.http code 19 = unsigned integer 8;
option ipxe.https code 20 = unsigned integer 8;
option ipxe.tftp code 21 = unsigned integer 8;
option ipxe.ftp code 22 = unsigned integer 8;
option ipxe.dns code 23 = unsigned integer 8;
option ipxe.bzimage code 24 = unsigned integer 8;
option ipxe.multiboot code 25 = unsigned integer 8;
option ipxe.slam code 26 = unsigned integer 8;
option ipxe.srp code 27 = unsigned integer 8;
option ipxe.nbi code 32 = unsigned integer 8;
option ipxe.pxe code 33 = unsigned integer 8;
option ipxe.elf code 34 = unsigned integer 8;
option ipxe.comboot code 35 = unsigned integer 8;
option ipxe.efi code 36 = unsigned integer 8;
option ipxe.fcoe code 37 = unsigned integer 8;

deny unknown-clients;

subnet * netmask 255.255.255.0 {
option subnet-mask 255.255.255.0;
option broadcast-address *;
option routers *;
option domain-name-servers *;
option time-offset -18000; # Eastern Standard Time

pool {
default-lease-time 21600;
max-lease-time 43200;
range 10.*;
}
}

host * {
hardware ethernet *; # G8
fixed-address 10.100.23.34;
option host-name "*";

if exists user-class and option user-class = "iPXE" {
filename "";
option root-path "iscsi:*::::iqn.*";
option iscsi-initiator-iqn "iqn.2013-09.net.*:*";
option ipxe.keep-san 1;
} else {
filename "undionly.kpxe";
}
}
Instead of adding stars, you should replace your actual details with fictional numbers, but always replace the same number with the same fictional number. That way we're able check if the right number/address points at the right thing.

Also, your problem description is a bit vague. Can you elaborate a bit more on what the problem is and what you expect to happen? Please add error logs or images of errors, if possible.
Reference URL's