mirror of
https://github.com/ipxe/ipxe
synced 2025-12-22 04:50:25 +03:00
[pxe] Populate ciaddr in fake PXE Boot Server ACK packet
We currently do not populate the ciaddr field in the constructed PXE Boot Server ACK packet. This causes a WDS server to respond with a broadcast packet, which is then ignored by wdsmgfw.efi since it does not match the specified IP address filter. Fix by populating ciaddr within the constructed PXE Boot Server ACK packet. Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
@@ -199,6 +199,10 @@ int create_fakepxebsack ( struct net_device *netdev,
|
||||
return rc;
|
||||
}
|
||||
|
||||
/* Populate ciaddr */
|
||||
fetch_ipv4_setting ( netdev_settings ( netdev ), &ip_setting,
|
||||
&dhcppkt.dhcphdr->ciaddr );
|
||||
|
||||
/* Merge in ProxyDHCP options */
|
||||
if ( proxy_settings &&
|
||||
( ( rc = copy_settings ( &dhcppkt, proxy_settings ) ) != 0 ) ) {
|
||||
|
||||
Reference in New Issue
Block a user