Jump to content

Karn's algorithm

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by 74.109.233.59 (talk) at 00:26, 6 September 2009. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Karn's Algorithm addresses the problem of getting accurate estimates of the round-trip time for messages when using TCP. The algorithm was proposed by Phil Karn in 1987[1].

Accurate round trip estimates in TCP can be difficult to calculate because of an ambiguity created by retransmitted segments. The round trip time is estimated as the difference between the time that a segment was sent and the time that its acknowledgment was returned to the sender, but when packets are re-transmitted there is an ambiguity: the acknowledgment may be a response to the first transmission of the segment or to a subsequent re-transmission.

Karn's Algorithm requires not using retransmitted segments when updating the round trip estimate. Round trip time estimation is based only on unambiguous acknowledgments, which are acknowledgments for segments that were sent only once.

This simplistic implementation of Karn's algorithm can lead to problems as well. Consider what happens when TCP sends a segment after a sharp increase in delay. Using the prior round trip time estimate, TCP computes a timeout and retransmits a segment. If TCP never acknowledges retransmitted packets, the round trip estimate time will never be updated, and TCP will continue retransmitting segments without adjusting to the increased delay.

A solution to this problem is to incorporate transmission timeouts with a timer backoff strategy. The timer backoff strategy computes an initial timeout. If the timer expires and causes a retransmission, TCP increases the timeout generally by a factor of 2.

new_timeout = 2 * timeout


This algorithm has proven to be extremely effective in networks with high packet loss.

  • Comer, Douglas E. (2006). Internetworking with TCP/IP (5 ed.). Prentice Hall: Upper Saddle River, NJ..

External links

  • RFC 2581 - TCP Congestion Control
  • RFC 2988 - Computing TCP's Retransmission Timer

References

  1. ^ Karn, Phil (11-13 August), "Improving Round-Trip Time Estimates in Reliable Transport Protocols", ACM SIGCOMM '87, pp. 2–7, retrieved 2009-07-15 {{citation}}: |format= requires |url= (help); Check date values in: |date= and |year= / |date= mismatch (help); Cite has empty unknown parameter: |coeditors= (help); Unknown parameter |coauthors= ignored (|author= suggested) (help)