<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">Hi,</div><div class="gmail_quote">As Michael already said, you are missing ifopen or dhcp in your script</div><div class="gmail_quote">Replace your "<span style="font-size:12.8px">sleep 2" with "ifopen" and you should be good.</span></div><div class="gmail_quote"><span style="font-size:12.8px"><br></span></div><div class="gmail_quote"><span style="font-size:12.8px">The reason it works when you don't press Ctrl-B quickly is that it tries dhcp by default when there is no embedded script.</span></div><div class="gmail_quote"><span style="font-size:12.8px"><br></span></div><div class="gmail_quote">Michael: Maybe this could be made more clear on the embed page? and maybe mention the default behavior (which is running the autoboot cmd?) But I think this is already described somewhere but I'm unable to find it right now.<br></div><div class="gmail_quote"><br></div><div class="gmail_quote">/Christian</div><div class="gmail_quote"><br></div><div class="gmail_quote">On Thu, Sep 28, 2017 at 12:29 PM, Géraud Guibert <span dir="ltr"><<a href="mailto:GGuibert@oceanet-technology.com" target="_blank">GGuibert@oceanet-technology.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Hello M. Brown,<br>
<br>
For sure, this code is confirming that the network is down, as<br>
told by ifstat and route...<br>
<br>
Here is the script :<br>
<br>
#!ipxe<br>
<br>
# wait/force interface to be up !?<br>
sleep 2<br>
<br>
set otdns x.x.x.x<br>
set otweb <a href="http://www.ourwebsite.fr" rel="noreferrer" target="_blank">www.ourwebsite.fr</a><br>
set otipxe ipxe/otboot.ipxe<br>
<br>
set ip y.y.y.y<br>
set netmask 255.255.0.0<br>
set gateway y.y.255.254<br>
<br>
set net0/dns ${otdns}<br>
set net0/ip ${ip}<br>
set net0/netmask ${netmask}<br>
set net0/gateway ${gateway}<br>
<br>
config<br>
set http_s https<br>
chain ${http_s}://${otweb}/${ipxe} ||<br>
<br>
set http_s http<br>
chain ${http_s}://${otweb}/${ipxe} ||<br>
<br>
<br>
So for the moment passing by the config ipxe to check,<br>
then CTRL-X to validate and let it go<br>
<br>
No magic here, because doing exactly the same thing manually<br>
with the same parameters and facing the problem (if interrupting<br>
the ipxe too quickly) , as said in my initial email.<br>
;-)<br>
<br>
Thx<br>
Sincerely yours<br>
Geraud Guibert<br>
______________________________<wbr>__________<br>
De : Michael Brown <<a href="mailto:mcb30@ipxe.org">mcb30@ipxe.org</a>><br>
Envoyé : mercredi 27 septembre 2017 15:08<br>
À : Géraud Guibert; <a href="mailto:ipxe-devel@lists.ipxe.org">ipxe-devel@lists.ipxe.org</a><br>
Objet : Re: [ipxe-devel] Error code 280860 : link down, driver not loaded ?<br>
<div class="gmail-HOEnZb"><div class="gmail-h5"><br>
On 27/09/17 08:48, Géraud Guibert wrote:<br>
> I'm facing a first problem in ipxe with the error code 280860 !?<br>
<br>
That error indicates an unopened network device.  Most likely your<br>
embedded script is missing any command that would open the network<br>
device (e.g. "ifopen" or "dhcp").<br>
<br>
What is in your embedded script?<br>
<br>
Michael<br>
______________________________<wbr>_________________<br>
ipxe-devel mailing list<br>
<a href="mailto:ipxe-devel@lists.ipxe.org">ipxe-devel@lists.ipxe.org</a><br>
<a href="https://lists.ipxe.org/mailman/listinfo.cgi/ipxe-devel" rel="noreferrer" target="_blank">https://lists.ipxe.org/<wbr>mailman/listinfo.cgi/ipxe-<wbr>devel</a><br>
</div></div></blockquote></div><br></div></div>