edited by
12,557 views
2 votes
2 votes
Consider sending a 2400 byte diagram into a link that has an MTU of 700 bytes. Only the second fragment of the datagram has to further go through another link with MTU of 400 bytes. Suppose the original datagram is stamped with the identification number 422. How many fragments are generated? What are the values in the various fields in the IP datagram generated related to fragmentation?
edited by

1 Answer

Best answer
6 votes
6 votes

datagram size is 2400 bytes including ip header size.so only payload size is 2380bytes.

MTU 700B also includes ip header.allowable size 700-20=680B.

1)first fragment is of size 680B.offset is (0-84)

2)second fragment is also size 680B.it again fragmented because it is greater than MTU size.MTU ip header,allowable datasize is 380B.

i)first fragment size in second one is 376B.offset is (85-131)

ii)second fragment size in second one is 304B.offset is(132-169)

3)third fragment is also size 680B. offset is (170-254)

4)fourth fragment is of size 344B.offset is (255-297).it includes 4 padding bits.

so total 5 fragments .

selected by

Related questions

1 votes
1 votes
1 answer
1
isriram asked Jun 9, 2022
1,148 views
Consider a system which supports only 1-address type instructions. The size of memory the system has is $2^m$ KB. The system supports ' i ' distinct instructions. The len...