Chapter 3: Problem 54
In our discussion of TCP congestion control in Section 3.7, we implicitly assumed that the TCP sender always had data to send. Consider now the case that the TCP sender sends a large amount of data and then goes idle (since it has no more data to send) at \(t_{1}\). TCP remains idle for a relatively long period of time and then wants to send more data at \(t_{2}\). What are the advantages and disadvantages of having TCP use the cwnd and ssthresh values from \(t_{1}\) when starting to send data at \(t_{2}\) ? What alternative would you recommend? Why?
Short Answer
Step by step solution
Understanding TCP Congestion Control
Consideration of Previous Values at t1
Advantages of Using t1 Values at t2
Disadvantages of Using t1 Values at t2
Alternative Approach - Slow Start Re-Initiation
Recommendation and Conclusion
Unlock Step-by-Step Solutions & Ace Your Exams!
-
Full Textbook Solutions
Get detailed explanations and key concepts
-
Unlimited Al creation
Al flashcards, explanations, exams and more...
-
Ads-free access
To over 500 millions flashcards
-
Money-back guarantee
We refund you if you fail your exam.
Over 30 million students worldwide already upgrade their learning with Vaia!
Key Concepts
These are the key concepts you need to understand to accurately answer the question.
cwnd (congestion window)
The size of the **cwnd** is dynamically adjusted based on the perceived network congestion conditions. During normal operations, the cwnd may increase when acknowledgments are received, indicating that the network can handle more data.
- If acknowledgments are routinely coming back on time, the cwnd can grow, allowing for more packets to be sent simultaneously.
- If acknowledgments are delayed or if there are indications of congestion, such as packet loss, the cwnd may be decreased to reduce the load on the network.
ssthresh (slow start threshold)
Once the cwnd exceeds the ssthresh, TCP transitions from exponential growth to a more measured increase strategy known as additive increase. This strategy involves increasing the cwnd size more slowly to prevent overwhelming the network.
- **Exponential Growth**: Before reaching the ssthresh, cwnd doubles approximately every round-trip time (RTT), which helps to quickly find the capacity of the network.
- **Conservative Growth**: Beyond ssthresh, cwnd is increased linearly (instead of exponentially) to avoid network congestion.
network conditions
When a TCP sender becomes idle after transmitting a large amount of data, the network conditions existing at the time of idleness may change by the time data transmission resumes. If the sender were to use the same values of cwnd and ssthresh as before the idle period, it might incorrectly assume network capacity hadn't changed.
- This can be risky if the network capacity has reduced during inactivity.
- Conversely, if capacity is underestimated, data flow might be unnecessarily slow, wasting network resources.
slow start method
To address this uncertainty, TCP employs the slow start method, beginning with a small cwnd (usually starting at one or two segments) and gradually increasing it. This increase occurs exponentially as the transmission progresses and packets are acknowledged, offering a controlled way to determine how much data the network can handle without becoming congested.
- **Initial Probing**: Starts with a minimal amount of data to avoid overwhelming the network.
- **Ramp-up Phase**: The cwnd doubles every round-trip time, allowing TCP to quickly assess the network's capacity.