ipxe network unreachable error - Printable Version +- iPXE discussion forum (https://forum.ipxe.org) +-- Forum: iPXE user forums (/forumdisplay.php?fid=1) +--- Forum: General (/forumdisplay.php?fid=2) +--- Thread: ipxe network unreachable error (/showthread.php?tid=10414) |
ipxe network unreachable error - Bamiboom - 2017-10-21 10:57 Hi, I want to use ipxe to boot acronis from the network. So I configured dnsmasq to supply undiony.kbxe to a legacy bios pxe client. This is working, however when iPXE is booted it gives me a error : [TXE: 1 x "Network unreachable (http://ipxe.org/28086011)"] (I tried to compile ipxe from sources but this gives the same error) I'm able to hit Ctrl-B and exectute a script from a webserver server using: dhcp chain http://192.168.0.200/default.ipxe This default.ipxe than loads acronis RE: ipxe network unreachable error - NiKiZe - 2017-10-21 18:16 The relevant error you get are "Nothing to boot: No such file or directory (http://ipxe.org/2d03e13b)" Most likely your dhcp gives out an invalid filename RE: ipxe network unreachable error - Bamiboom - 2017-10-22 14:30 (2017-10-21 18:16)NiKiZe Wrote: The relevant error you get are "Nothing to boot: No such file or directory (http://ipxe.org/2d03e13b)" You're right! The first error was not the problem. So I checked ${filename} and echo ${root-path}, which were both empty. Then I figured out that because I use dnsmasq as a dhcp / pxe service in parallel to my routers dhcp server, I could only use pxe-service and not dhcp-boot! Using a dhcp-match I check if it's the first or second dhcp request and supply the right file accordingly! My working dnsmasq.config file: Code: # A configuration for dnsmasq to function as a proxyDHCP server, Note that for the files that are loaded from tftp the .0 extension needs to be added. The default.ipxe loads acronis from http. |