in Computer Networks
992 views
2 votes
2 votes
Suppose that the TCP congestion window is set to 18 KB and a timeout occurs. How
big will the window be if the next four transmission bursts are all successful? Assume
that the maximum segment size is 1 KB.
in Computer Networks
992 views

2 Answers

1 vote
1 vote
when a timeout occurs, the sender will go to slow start phase

New threshold=$\frac{cwnd}{2}=\frac{18}{2}$=9 KB

cwnd=1 MSS=1 KB

first transmission(after timeout)=1 KB

Second transmission=2 KB

Third transmission=4 KB

Fourth transmission=8 KB

After 4 successful transmissions cwnd=8 KB

1 comment

During the fourth transmission it is 8kb.But since its given as after 4 successful transmission,it must be 9KB(not 16KB because threshold is 9KB).
3
3
0 votes
0 votes

Slow start threshold = 18 MSS / 2 = 9 MSS

Congestion window size = 1 MSS

Window size at the start of 1st transmission = 1 MSS

Window size at the start of 2nd transmission = 2 MSS

Window size at the start of 3rd transmission = 4 MSS

Window size at the start of 4th transmission = 8 MSS

Window size at the start of 5th transmission = 9 MSS

Thus, after 4 successful transmissions, window size will be 9 MSS or 9 KB.

Related questions