Hi Team, I am seeing a TCP connection where the the MSS is negotiated as 1460 but there are few PSH packets which have the length 2920. I have also confirmed that the MTU of the windows box which is sending the data is 1500. So there is no way that the windows box can send a packet of such length. Following ping test ensures that the windows box has max MTU of 1500.
I also disabled the following in the wireshark, so that wireshark is not combining two packets in to one.
The capture was taken from the same windows PC which is supposedly sending the packet of Length 2920. Has anyone encountered such issue. Is this a problem with the windows box or the wireshark tool. Thanks! asked 14 Mar ‘11, 21:43 Prab edited 15 Mar ‘11, 00:59 SYN-bit ♦♦ |
2 Answers:
Yes, what you see is a typical result of capturing on the sending PC equipped with a network card that has the "large send offload" option. What happens is that Wireshark captures the outgoing data before it is actually completely processed for transmission in the network card, meaning that you see large chunks of data in your trace that get chopped down to the real network packets in the network card only after you've already recorded it. You can verify this by capturing on the receiver at the same time - you'll see that all packets that actually arrive have the correct size. Or you can go into the advanced settings of your network card and turn of the large offsend feature to see the difference. answered 15 Mar '11, 00:59 Jasper ♦♦ |
This can happen on systems that support TCP segmentation offloading on the NIC. Wireshark captures packets between the NIC-driver and the NIC. Since the TCP segmenting is now done on the NIC, wireshark sees a large frame going out, but the NIC splits it up into multiple packets on the wire. (see: http://wiki.wireshark.org/CaptureSetup/Offloading#Segmentation_Offload) answered 15 Mar '11, 01:03 SYN-bit ♦♦ |
Hi SYNbit, Jasper,
Thanks for the comments. Now i understand this.
You're welcome :-)
Could you accept either Jaspers or my answer by clicking on the "checkmark" on the left of the answer? That way the question will be removed from the list of "unanswered questions". Thx!