What do SRE and SLE stand for in the packet capture display? I'm looking at TCP packets so I assume it has something to do with windowing. asked 17 Dec '10, 13:57 catimossi |
2 Answers:
They are the Right Edge (SRE) and Left Edge (SLE) of already acknowledged data when Selective Acknowledgments are used. This prevents retransmission of this data. See also RFC 2018 answered 17 Dec '10, 17:05 SYN-bit ♦♦ edited 28 Jan '13, 14:49 Guy Harris ♦♦ |
To add to Sake's post, SACK (Selective ACK) is used to identify holes in the TCP stream. This prevents the stack from having to go back to where the loss occurred and start all over. So the pkts from the normal ACK field (in the "normal" ACK field) to the LE is good to go. But from the LE to the RE, pkts were lost. So if the pkts are transferred like this (1, through 10) 10 9 8 7 6 5 4 3 2 1 ---> in normal ACK scenario, if pkt 4 is lost, it will look like this to the receiver 10 9 8 7 6 5 XX 3 2 1 ---> So the receiver will repeatedly ack saying "I need pkt 4...I need pkt 4, I need pkt 4" as other pkts (5-10) trickle in. When three of these acks are received, it triggers the fast retransmission, BTW. When SACK is used, the receiver identifies the hole at pkt 4 position. So it doesn't throw pkts 5-10 away...instead, it sends a SACK requesting for pkt#4. answered 21 Dec '10, 06:39 hansangb |
sorry to raise an old question.
As per RFC I believe that packets from the LE to the RE are GOOD.
So if we have ACK=3, LE=5, RE=10,
it means that packet 4 is lost, packets 5-10 are good.
Am i missing something?
no, you are absolutely right
Only the values in the LE and RE are not packet numbers, but sequence numbers :-)