i am trying to boot via pxe. the pxelinux configuration file is not getting loaded.
it tries to load all the different variation of configuration file names but never loads one.
I've copied the default config file to 01-00-13-20-b0-d0-c5. Neither the default nor the mac address-specific configuration files get loaded. And I am left with a "boot:" prompt.
Code:
TFTP prefix: /lts/2.6.17.8-ltsp-1/
Trying to load pxelinux.cfg/01-00-13-20-b0-d0-c5
Trying to load pxelinux.cfg/C0A801C7
Trying to load pxelinux.cfg/C0A801C
...
Trying to load pxelinux.cfg/C
Trying to load pxelinux.cfg/default
Could not find kernel image: linux
boot:
my dhcp server is at 192.168.1.100
my network is behind a router at 192.168.1.1
my dhcpd.conf file:
Code:
#dhcpd.conf
authoritative;
subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.20 192.168.1.250;
option domain-name-servers 192.168.1.1;
option broadcast-address 192.168.1.255;
option routers 192.168.1.1;
option subnet-mask 255.255.255.0;
if substring( option vendor-class-identifier, 0, 9 ) = "PXEClient" {
filename "/lts/2.6.17.8-ltsp-1/pxelinux.0";
}
else{
filename "/lts/2.6.17.8-ltsp-1/nbi.img";
}
option root-path "/opt/ltsp-4.2/i386";
}