in Computer Networks
814 views
1 vote
1 vote

give answer with explanation

in Computer Networks
814 views

3 Answers

1 vote
1 vote
the protocol in play here has a minimum header length of 20 Bytes how can you ask someone to go below this value?

2 Comments

suppose if there is 12 byte minimum header length in network layer, then what will be approach?
I want only approach :)
0
0
kindly make edits to your question; answering like this will violate standards
0
0
0 votes
0 votes
P to R1 link's MTU is 1024B hence a TCP packet of length 820B will be sent easily .So now the packet is in R1 router . Now R1 will have to fragment the packet because the MTU of R1 to R2 is 256 B . Therefore the possible fragmentation is 8+248 , 8+248 , 8+248 ,8+76 to Router R2 . Now the MTU of R2 to Q is 512B and a packet of size 256B will be sent easily . Hence the no of bytes transferred is  (256 + 256 +256 + 84 )B = 852 B .

Therefore the answer is 852 Bytes .

4 Comments

TCP segments are encapsulated within Datalink layer frames when it is ready to be dispatched into the physical link .
0
0
TCP segments can directly encapsulated with Datalink layer frame? then what about IP header and mac header? We don't need to add them
0
0
Tcp segment passes the data to network layer . If the MTU of the link that is maximum transmission unit is less than the frame size than IP does the fragmentation of the packets and attaches header to every fragmented packet .
0
0
0 votes
0 votes
from p-r1 link pkt is 820+12 from r1-r2 link pkts are 248+8,248+8,248+8,88+8 from r2-q link pkts are 256+12, 256+12, 256+12, 96+12 so ans is (256+12+ 256+12+256+12,+96+12)=912 bytes

Related questions