Kalpana Kalpana (Editor)

TCP Illinois

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
TCP-Illinois

TCP-Illinois is a variant of TCP congestion control protocol, developed at the University of Illinois at Urbana-Champaign. It is especially targeted at high-speed, long-distance networks. A sender side modification to the standard TCP congestion control algorithm, it achieves a higher average throughput than the standard TCP, allocates the network resource fairly as the standard TCP, is compatible with the standard TCP, and provides incentives for TCP users to switch.

Contents

Principles of operation

TCP-Illinois is a loss-delay based algorithm, which uses packet loss as the primary congestion signal to determine the direction of window size change, and uses queuing delay as the secondary congestion signal to adjust the pace of window size change. Similarly to the standard TCP, TCP-Illinois increases the window size W by α / W for each acknowledgment, and decreases W by β W for each loss event. Unlike the standard TCP, α and β are not constants. Instead, they are functions of average queuing delay d a : α = f 1 ( d a ) , β = f 2 ( d a ) , where f 1 ( ) is decreasing and f 2 ( ) is increasing.

There are numerous choices of f 1 ( ) and f 2 ( ) . One such class is:

α = f 1 ( d a ) = { α m a x if  d a d 1 κ 1 κ 2 + d a otherwise.

β = f 2 ( d a ) = { β m i n if  d a d 2 κ 3 + κ 4 d a if  d 2 < d a < d 3 β m a x otherwise.

We let f 1 ( ) and f 2 ( ) be continuous functions and thus κ 1 κ 2 + d 1 = α m a x , β m i n = κ 3 + κ 4 d 2 and β m a x = κ 3 + κ 4 d 3 . Suppose d m is the maximum average queuing delay and we denote α m i n = f 1 ( d m ) , then we also have κ 1 κ 2 + d m = α m i n . From these conditions, we have

κ 1 = ( d m d 1 ) α m i n α m a x α m a x α m i n and κ 2 = ( d m d 1 ) α m i n α m a x α m i n d 1 , κ 3 = β m i n d 3 β m a x d 2 d 3 d 2 and κ 4 = β m a x β m i n d 3 d 2 . This specific choice is demonstrated in Figure 1.

Properties and Performance

TCP-Illinois increases the throughput much more quickly than TCP when congestion is far and increases the throughput very slowly when congestion is imminent. As a result, the window curve is concave and the average throughput achieved is much larger than the standard TCP, see Figure 2.

It also has many other desirable features, like fairness, compatibility with the standard TCP, providing incentive for TCP users to switch, robust against inaccurate delay measurement.

References

TCP-Illinois Wikipedia