This merge request introduces support for the optional reassembly of fragmented IPv4 traffic streams. The reassembly feature is currently limited to access and network interfaces and is designed specifically for BBL stream traffic. This enhancement improves the handling of fragmented packets, ensuring proper reconstruction and processing.
The following configuration is necessary to enable the reassembly of fragmented IPv4 traffic streams:
{
"traffic": {
"reassemble-fragments": true
}
}
The stream-info command has been updated accordingly. A new field, rx-fragments, tracks the number of fragments used to reconstruct a packet, with a minimum value of 2, as fragmented packets consist of at least two fragments. Typically, this value ranges between 2 and 3. Another field, rx-fragment-offset, represents the largest offset value among all fragments. This value, plus the size of the IPv4 header, should always be less than or equal to the configured MTU.
This merge request introduces support for the optional reassembly of fragmented IPv4 traffic streams. The reassembly feature is currently limited to access and network interfaces and is designed specifically for BBL stream traffic. This enhancement improves the handling of fragmented packets, ensuring proper reconstruction and processing.
The following configuration is necessary to enable the reassembly of fragmented IPv4 traffic streams:
The stream-info command has been updated accordingly. A new field, rx-fragments, tracks the number of fragments used to reconstruct a packet, with a minimum value of 2, as fragmented packets consist of at least two fragments. Typically, this value ranges between 2 and 3. Another field, rx-fragment-offset, represents the largest offset value among all fragments. This value, plus the size of the IPv4 header, should always be less than or equal to the configured MTU.