I am trying to do a PXE boot from a LTSP server connected directly to the client computer.
My problem is, during netboot, it says:
CLIENT MAC ADDR: 8C 89 A5 E0 6C 86 GUID: 000000000-0000-0000-0000-8C89A5E06C86
CLIENT IP: 192.168.1.7 MASK: 255.255.255.0 DHCP IP: 192.168.1.2
GATEWAY IP: 192.168.1.1
PXE-E11: ARP timeout
PXE-E11: ARP timeout
PXE-E38: TFTP cannot open connection
PXE-M0F: Exiting PXE ROM.
Reboot and select proper Boot device
or Insert Boot Media in selected Boot device and press a key
I don't understand how to solve this issue. I could boot it up properly earlier, and when the server rebooted, I am getting this error.
Please help!
EDIT:
my /etc/ltsp/dhcpd.conf
file is as follows:
option domain-name-servers 8.8.8.8 8.8.4.4;
default-lease-time 86500;
max-lease-time 6059934;
authoritative;
option domain-name "BLAX";
allow booting;
allow bootp;
next-server 192.168.1.2;
filename "ltsp/amd64/pxelinux.0;
ddns-update-style none;
subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.3 192.168.1.250;
option domain-name "fdf.com";
option domain-name-servers 8.8.8.8;
option broadcast-address 192.168.1.255;
option routers 192.168.1.1;
option subnet-mask 255.255.255.0;
option root-path "/opt/ltsp/amd64";
if substring( option vendor-class-identifier, 0, 9 ) = "PXEClient" {
filename "ltsp/amd64/pxelinux.0;
} else {
filename "ltsp/amd64/nbi.img";
}
}
Network configuration:
/------------\ /-------------\
| | | |
|192.168.1.7 | | 192.168.1.2| /------------\
| Client o----------o Server o------o Router |
| Machine | | Machine | |192.168.1.1 |
| | | | /------------\
/------------\ /------------/