937 views
2 votes
2 votes
What is the effective throughput for transferring a 1600 KB file when TCP using slow start congestion control technique. Given round trip time 20 ms and Maximum segment size 800 bytes. Assume there are no packet losses, unlimited bandwidth, and receiver window size. Assume slow start begins initially with a congestion window size of 1.

Answer given = 8MBPS.

2 Answers

Best answer
4 votes
4 votes

Total No of MSS to send =  1600 KB/800 B = 2048 MSS

so In slow start it wil start with 800B/  1600B/  3200B/  6400B/ 12800B/ 51200B/ 102400B/ 204800B/ 409600B/ 819200B/ 1638400B 

Where 1638400B = 1600KB 

Total 10 RTT

hence total  time required is 20 ms *10= 200 ms

THROUGHPUT = Data Size/ Total Time

                        = 1600 KB/200 ms

                         =8 MBPS

HERE no need of threshold as buffer size and bandwidth is unlimited.

selected by

Related questions

5 votes
5 votes
0 answers
1
3 votes
3 votes
1 answer
2
rahul sharma 5 asked Aug 13, 2017
1,106 views
R.T.T=10 microsec.M.S.S=100 BytesSlow start protocol used to send data.Sender needs to send data till it completes sending window size 8MSS.Find:-a. Total Time takenb....
4 votes
4 votes
3 answers
3
3 votes
3 votes
4 answers
4
shikharV asked Jan 18, 2016
2,008 views
Given solution:I couldn't understand from reaching 1KB to 16KB why it took 50ms not 40ms. Please check