Redirected
8,373 views
3 votes
3 votes
Suppose you are designing the sliding window protocol for a 1 Mbps point to point link to the moon, which has one way latency(delay) of 1.25 seconds. assuming that each frame carries 1 KB of data, What is minimum number of bits you need for sequence number?

2 Answers

4 votes
4 votes
window size(w)=(bandwidth*two way propagation delay)/frame size

so here w=(10^6*2*1.25)/(1*1024*8)

=305

by default sliding window means go_back n ARQ

so here 2^n-1=305

n=9 bits
0 votes
0 votes
Bandwidth delay product=1.25*2*10^6

Size of sender window=1.25*2*10^6/8*10^3

                                         =312.5(313 aprox)

In sliding window sws=rws

No of seq no=312.5*2=625

To represent 625 10 bits are required

Related questions

5 votes
5 votes
2 answers
2
Shashank Chavan asked Jan 1, 2016
682 views
In SWP, if windows size of the sender is 5, transmission delay is 15ms and propagation delay is 25ms.So,if first packet is transmitted on link, will it wait for the windo...