Consider one TCP connection (Reno) that uses a 10 Mbps link. Assume that this link does not buffer data and that the receiver's receive buffer is much larger than the congestion window. Suppose that each TCP segment is 1500 bytes in size , and the two-way communication propagation delay between the sender and receiver should be 200 ms . Also, suppose a TCP connection is always in the overflow prevention phase (ignore slow start).
What is the maximum window size in the segments this TCP connection can reach?
So, we know the connection bandwidth and delay, I think we can be able to manipulate the following formula so that we can find the window size.
Bandwidth = Window Size / RTT
Throughput * RTT = Window Size
10 Mbps * 200 ms = Window Size
I am not sure if this is correct. It’s hard for me to find anything else related to finding the window size other than this formula.
source share