Win7 Client and Win7 Server: TCP Retransmission followed by DUP ACK and TCP Retransmission
My Windows 7 Client Application can abruptly disconnect from the Windows 7 Server Application after several successful queries.
A successful query:
- Client to Server [PSH, ACK]
- Server to Client [PSH, ACK]
- Client to Server [ACK]
Error I see on the Server Side:
- Client to Server [PSH, ACK]
- Server to Client [PSH, ACK]
- Client to Server [TCP Retransmission] (of #1)
- Server to Client [TCP Dup ACK] (of #2)
- Server to Client [TCP Retransmission]
- Repeat step #5 until the client disconnects
Error I see on the Client Side:
- Client to Server [PSH, ACK]
- Client to Server [TCP Retransmission] (of #1)
- Server to Client [TCP Previous Segment not Captured] (referring to DUP ACK)
- Listen indefinitely for a response that doesn't come causing a hang.
My questions are:
- Why is the client missing the transmissions the server is sending?
- Would this be because of the server, client, or something in-between?
Thanks!
Are you able to share (an anomimized version) of the client and server trace on a public file sharing service like OneDrive, Dropbox, etc? Analysis of text is so much harder and error-prone than analysis of pcap files.
One possible cause would be that only large packets get dropped by having tunneling somewhere between the client and the server without proper adjustments of the TCP MSS. Again, being able to look at the packets will help (please make sure the 3-way handshake is in the capture file)