in this capture file there is strange problem http://www.mediafire.com/download/ouaxioxglpogd0z/FDR_7_9613.pcap i have two devices one called FDR with ip 105.181.145.115 only sends data to the server with ip 41.32.98.66 in case of packet drop FDR sends retransmission packet why ??? asked 05 Jun '15, 16:05 shady |
2 Answers:
What I know out of the trace is that the trace is taken on the server. It is clear that there are some errors between the server and the client. Packet Loss, Out of Order,... -> Maybe this is due to an instable network, bottlenecks, or ... But if I understand your question right than this all is not your question. Right? You want to know why there is the "DUP ACK" in FRAME 17, for example. For the answer I must start in FRAME 7: There is a PACKET with SEQ=111 and LEN=55 wich arrives the server. Afer that the server receives more segments in correct order until FRAME 16. In FRAME 16 he receives the same SEGMENT as he has seen in FRAME 7, but he has received so far Segements till 275. And he is expecting 276. So as an respond to FRAME 16 the server sends in FRAME 17 the ACK with the next expected SEQ number 276. Later in the trace behaviour is still there, but with a few more events around. answered 07 Jun '15, 14:25 Christian_R you are great all information you said is exactly right check out this report i made http://www.mediafire.com/view/gdef2p03legeebb/FDR.docx i want to be sure that my analysis is right ? thank you (08 Jun '15, 09:50) shady |
I don't think that we face a real packet loss problem here. Traffic Pattern indicating that the FDR tries to send 10 55-bytes records within 1 second:
So if everything runs smoothly, we should see a 55 byte (single) segment arriving at 10 0ms intervals. answered 08 Jun '15, 22:50 mrEEde edited 08 Jun '15, 22:52 (voted up) I was just trying to explaiin the dup ack and not the rest. (08 Jun '15, 23:14) Christian_R |
it think something wrong with RTO of FDR
At the first view I would say, common packet loss behaviour. FDR knows what he needs to send because of the ACK of the server. Which packet exactly is suspicious to you?
i agree with you its common packet loss
when i studied the file i found that in retransmission events ACK packet from server didnt reach FDR so FDR sends retransmission packet to server asking for ACK packet
is this right ?? Christian_R