No response from the server after sending a DHCP request

orifai01 wrote on Thursday, January 12, 2017:

Hello,
I have a working FreeRTOS + TCP/IP application which manages to receive and send responses to pings.
In WireShark can see that FreeRTOS sends DHCP discover messages as both unicast and broadcast, yet there is no response received from the server (I suppose I should look for a packet directed to my MAC address, shall enter the first query in eConsiderFrameForProcessing function). What could be the reason for that?
Attached are shapshot of FreeRTOS discover request and a DHCP discover of some service (which I couldn’t turn off) for comparison.

https://s29.postimg.org/49b73hwxj/Discover_Packet_Free_RTOS.png
https://s24.postimg.org/5b788fbv9/Discover_Packet_Not_Free_RTOS.png

orifai01 wrote on Thursday, January 12, 2017:

For some reason, setting ipconfigDRIVER_INCLUDED_TX_IP_CHECKSUM and ipconfigDRIVER_INCLUDED_RX_IP_CHECKSUM to 0 has solved the problem.

heinbali01 wrote on Thursday, January 12, 2017:

Hi Orit,

When developing DHCP it can be handy to install a temporary DHCP-server on your own laptop. In that way you make sure to see all messages in WireShark.

Here is an example of a DHCP server: https://sourceforge.net/projects/dhcp-dns-server I chose the option “Run stand alone”, it runs from a command-prompt.

The DHCP client will use both ‘unicast’ and ‘broadcast’, it starts with a unicast (dhcpBROADCAST flag cleared).

When the answer comes in, it is directed to UDP port 68, and xPortHasUDPSocket() should return pdTRUE for that port.

Make sure that your EMAC accepts the Ethernet broadcast address of all 1’s.

heinbali01 wrote on Thursday, January 12, 2017:

Our posts were crossing each other.

enabling LLMNR and setting ipconfigDHCP_REGISTER_HOSTNAME to 1 have solved the problem.

Good to hear. I’m not sure why changing those features would make DHCP working.

I tested the DHCP client with LLMNR, with NBNS, and also without any name service at all.

Does LLMNR cause different settings in your NetworkInterface.c ?

orifai01 wrote on Thursday, January 12, 2017:

Hi Hein, thank you for your answer.
As mentioned above, apparently setting ipconfigDRIVER_INCLUDED_TX_IP_CHECKSUM and ipconfigDRIVER_INCLUDED_RX_IP_CHECKSUM to 0 has solved the problem. I’ll enable the Checksum Offload Engine in the ethernet controller (LAN9220) in order to set them again to 1.

heinbali01 wrote on Thursday, January 12, 2017:

All good, you’re getting closer and closer.

Note that the “Checksum Offload Engine” must be studie well: test it with TCP, UDP, and ICMP messages. Some EMAC’s want you to set the checksum field(s) to zero first, others don’t care about the value.

Please feel free to publish you NetworkInterface.c or send it to us directly, so I can have a look.

Thanks, Hein