Reputation: 11
I have 2 questions:
While calculating RTT, should we take transmission time into consideration or not?
The distance between two stations M and N is L kilometers. All frames are K bits long. The propagation delay per kilometers is t seconds. Let T bits/sec be the channel capacity. Assuming that processing delay is negligible, what is the minimum number of bits for the sequence number field in a frame for maximum utilization, when the sliding window protocol is used?
Upvotes: 1
Views: 1850
Reputation: 33
RTT is calculated by considering the values of propagation delay, queing delay, transmission delay and processing delay..
Rtt = 2*[propagation delay + N(queing delay+transmission delay+processing delay)]
Upvotes: 0
Reputation: 111
1) RTT is the measured time from segment transmission until ACK received. So transmission time will be considered obviosly. One can ignore the retransmission time.
Upvotes: 1