Displaying 2 results from an estimated 2 matches for "genemod".
Did you mean:
genego
2015 Jan 19
0
PXE Booting EFI
...om the
> last parsed packet (PxeReply) will overwrite
> the value gathered from the ProxyOffer and that leads
> to "Nest-server"= DHCP Server IP (wrong)
Order:
at syslinux-6.03/efi/pxe.c
void net_parse_dhcp(void)
{
...
parse_dhcp(&mode->PxeReply.Dhcpv4, pkt_len);
//genemod start
if(&mode->ProxyOfferReceived)
parse_dhcp(&mode->ProxyOffer.Dhcpv4, pkt_len);
//genemod end
Print(L"\n");
...
}
Though I'm trying to think of a DHCP option that wouldn't be in the
earlier packets.
> Fore some reason I think there might be...
2015 Jan 19
2
PXE Booting EFI
> EFI has proven to be more robust.? The catch
> here is order.? The
> ProxyOffer data must
> take precedence over the PxeReply data but both
> of them probably need to be parsed.
Not really; If you parse both "next server" from the
last parsed packet (PxeReply) will overwrite
the value gathered from the ProxyOffer and that leads
to "Nest-server"= DHCP Server IP