2,594 views
5 votes
5 votes
 
Consider a TCP connection using the slow start congestion control scheme with an initial threshold value of 64 kB and a Maximum Segment Size (MSS) of 2 kB. The receiver’s advertised window is initially 32 kB. The first transmission attempt is numbered 0, and all transmission attempts are successful except for the timeouts on attempt number 4. Which of the following represents size of sender’s congestion window at attempt number 10?

6 Answers

Best answer
9 votes
9 votes

1mss -2KB- attempt 0

2mss - 4 KB-attempt 1

4mss -8KB- attempt 2

8mss -16KB attempt 3

16mss - 32KB-attempt 4 (time out new thresold = 8mss or 16KB)

1mss - 2KB-attempt 5

2mss -4KB -attempt 6

4mss -8KB- attempt 7

8mss - 16KB-attempt 8(REACHED THRESHOLD VALUE SO START LINEAR INCREASE)

9mss -18KB- attempt 9

10mss - 20KB-attempt 10 (At 10th attempt sender window size is of 10ms=20KB)

 

selected by
1 votes
1 votes
The answer should be 20Kb

Attempt number              Window Size

0                                     1

1                                    2

2                                     4

3                                    8

4                                    16 ( slow start threshold set to 8 )

5                                     1

6                                     2

7                                     4

8                                      8  ( slow start ends)

9                                     9  (linear increase starts)

10                                    10

 

10MSS =   20Kb
0 votes
0 votes

Th=64

MSS=2

2 4 8 16 32 64 **(TO,New Th=32) 2 4 8 16 32 34 36 38 40 42 44 46 48 50 52 54 56 58 60 62 64

so ans 16 kB.

Related questions

17 votes
17 votes
2 answers
1
7 votes
7 votes
2 answers
3
rahul sharma 5 asked Aug 16, 2017
1,661 views
Consider TCP congestion control. Assuming RTT as 4 seconds and segment size as 3KB, if bandwidth is 500kbps, what is the smallest window size for which there is no stalli...
2 votes
2 votes
3 answers
4
Purple asked Jan 18, 2017
7,674 views
In optimal window size for sender or for finding the maximum window size of sender N, do we consider N=1+2a or N=a.Where a=(propagation time/Transmission time)?For max ef...