retagged by
434 views
2 votes
2 votes

retagged by

2 Answers

Best answer
1 votes
1 votes
  1. Start MSS=2 MSS
  2. Threshold=16 MSS
  3. TO= at 6th  transmission

At the congestion detection phase on timeout, the TO timer expires before receiving the ACK for a segment.in this case, the sender reacts as:

  • Setting the slow start threshold value = $SST_{new}=C_{win}/2$
  • decreasing the cw size to 1MSS.
  • resuming the slow start algorithm.

 

t=1 2 MSS
t=2 4 MSS
t=3 8 MSS
t=4 16 MSS (Threshold)
t=5 17 MSS
t=6 18 MSS(Timeout) $SST_{new} =18/2=9$
t=7  2 MSS
t=8 4 MSS
t=9 8 MSS

At 9th transmission, the congestion window size should be 8MSS.

Note: at $t=1,2,3$ is the slow start phase, $t=4$ is the threshold, and $t=5$ is the congestion avoidance phase.

selected by

Related questions

2 votes
2 votes
0 answers
2
h4kr asked Nov 2, 2022
245 views
2 votes
2 votes
1 answer
3