8,673 views
7 votes
7 votes
Consider the effect of using slow start on a link with 5 millisec round trip time and no congestion. The receiver window is 36 KB and the maximum segment size = 2 KB. The time (in milliseconds) before the first full window can be sent is ________.

1 Answer

Best answer
12 votes
12 votes

The question says - " Consider the effect of using slow start on a link with 5 millisec round trip time and no congestion

here No congestion is mentioned so no need of Threshold value..

With slow start, the first RTT sends out 1 segment (or 2KB),

the 2nd RTT sends out 2 segments (or 4KB),

the 3rd 4 segments (or 8KB),

the 4th 8 segments (or 16KB).

The 5th RTT would have sent out 16 segments (or 32KB),

6th sent out 32 segments ( 64 KB) 

however, it'll exceed the receiver's window. Therefore, the amont of time it takes BEFORE the 6th RTT (or full window, that is, 36 KB) is 5 * 5 = 25 msec.

2|4|8|16|32|64

total time needed = 5 * 5 msec = 25 msec  

Reference:

http://web.eecs.utk.edu/~qi/teaching/ece453f06/hw/hw7_sol.htm 

Problem 4 (10)

when Time-Out is mentioned see what to do , in that case only we need Threshold value : https://gateoverflow.in/1794/gate2014-1_27

selected by
Answer:

Related questions

1 votes
1 votes
2 answers
1
2 votes
2 votes
2 answers
4
Na462 asked Dec 2, 2018
1,156 views
Assume the scenario where size of the congestion window of a TCP connection be 40KB when timeout occurs. The MSS is 2KB. Propagation delay be 200msec. Time taken by TCP c...