vote up 1 vote down star

I am looking for the reason Why Fragmentation is Done at IP level but why not for TCP/UDP.

Suppose say my frame looks like this |MAC|IP|TCP|Payload|FCS. the whole size if say for eg: 1600. PathMTU happens here, why fragmentation is implemented @ IP level is my question and why not implemented @ TCP/UDP level/code.

Thank in advance.

flag

70% accept rate

2 Answers

vote up 4 vote down

That's exactly what multiple layers in the TCP/IP stack and in ISO/OSI model are for. TCP/UDP are transport protocols and they shouldn't care of fragmentation - it's not their problem. The IP level deals with the network and it deals with fragmentation since size of fragment depends on the network properties. The layer that has best conditions for solving the problem does solve it.

link|flag
Suppose say my frame looks like this |MAC|IP|TCP|Payload|FCS. the whole size if say for eg: 1600. PathMTU happens here, why fragmentation is implemented @ IP level is my question and why not implemented @ TCP/UDP level/code. – mahesh Jun 24 at 8:58
@mahesh - you may want to edit your question to reflect this – Brian Agnew Jun 24 at 8:59
1  
@Brian Agnew, it could be great full if you could edit the question the way you want me to edit. :). Thanks in advance. – mahesh Jun 24 at 9:04
vote up 0 vote down

Some TCP implementations also determine the MTU and size their segments to avoid fragmentation as well. Doing so improves reliability under lossy conditions, as any TCP segment that is received can be acknowledged and not retransmitted. Only lost TCP segments are retransmitted. In contrast, if any IP datagram fragment is lost, then no useful information is received.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.