<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css" style="display:none"><!-- p { margin-top: 0px; margin-bottom: 0px; }--></style>
</head>
<body dir="ltr" style="font-size:12pt;color:#000000;background-color:#FFFFFF;font-family:Calibri,Arial,Helvetica,sans-serif;">
<p>Hi,<br>
</p>
<p><br>
</p>
<p>In start_pxebs() (net/udp/dhcp.c), before doing xfer_open_socket(), fetch_ipv4_setting() makes sure that IP address (assigned during DHCP process) is set to dchp->local.sin_addr. This means, after DGRAM socket is opened, dhcp_pxebs_rx() cannot receive any
 broadcasted DHCP ACK packets. udp_demux will allow only packets unicasted to interface's IP address, to this open UDP connection. This breaks pxebs. <br>
</p>
<p><br>
</p>
<p>Would it be an sensible idea to move, <span style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; background-color: rgb(255, 255, 255);">fetch_ipv4_setting</span>() after <span style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; background-color: rgb(255, 255, 255);">xfer_open_socket</span>(),
 such that DGRAM socket is opened with <span style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; background-color: rgb(255, 255, 255);">dchp->local.sin_addr</span> set to zero (just like start_dhcp()) or is there a different way to solve
 this problem.<br>
</p>
<p><br>
</p>
<p>Thanks,<br>
</p>
<p>Anoob.<br>
</p>
</body>
</html>