I have a linux system that sits between 2 routers ( sniffer like ). both routers support Jumbo frames while my system is limited to MTU 1500.
My understanding that Sending router will fragment the Jumbo Frame into IP Datagram based on MTU 1500 and linux will reassemble them according to RFC 815.
Few questions regarding this process :
In Linux, which Layer takes care of the reassembly process ? which file ?
Does this process ( fragmentation and reassembly ) applies to all Layer 3 protocols ( IPv4 \ IPv6 for ex ) ?
Assuming my sniffer constructs a big packet and sends it out, does the fragmentation happens automatically by the linux stack ?
Thanks, Ran