2,098 views
4 votes
4 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. Find the size (in kB) of the sender’s congestion window attempt number 9.

1 Answer

Best answer
7 votes
7 votes

Transmission 0: WC = 2KB. (1 segment)

Transmission 1: WC = 4KB. (2 segments)

Transmission 2: WC = 8KB. (4 segments)

Transmission 3: WC = 16KB. (8 segments)

Transmission 4: WC = 32KB. (16 segments)

Now timeout occurs.

Since timeout has happened, new Threshold = 1/* Current Window size = 16KB.

Algorithm enters slow start phase.

Transmission 5: WC = 2KB. (1 segment)

Transmission 6: WC = 4KB. (2 segments)

Transmission 7: WC = 8KB. (4 segments)

Transmission 8: WC = 16KB. (8 segments)

Since Threshold has been reached, so algorithm enters Congestion Avoidance phase:

Transmission 9: WC = 18KB. (9 segments)

Answer - 18KB

selected by
Answer:

Related questions

0 votes
0 votes
1 answer
2
atajan asked Dec 1, 2022
317 views