Hi Sasha. > > - dhcp_con = net_udp_new(0xffffffff, PORT_BOOTPS, dhcp_handler, NULL); > + dhcp_con = net_udp_eth_new(edev, 0xffffffff, PORT_BOOTPS, dhcp_handler, NULL); The constant 0xffffffff appears in a few places. A proper define would properly be better. #define IP_BROADCAST 0xffffffff Sam