Please excuse me if this has been answered before, but I couldn't easily find an answer.
My company creates high-speed measurement equipment, that produces roughly 0.7 Gigabit/second of UDP data. Each set of samples is about 2500 bytes long, which caused us to use IPv4 fragmentation for sending the data. UDP checksums are not used at the moment (set to 0). The receiving end is a rather standard Linux box (with IPv4 fragment reassembly timeout set to 30 seconds, as is default). Given our particular setup, we expect packet loss.
Given the high volume of data, the fact that the IPv4 identification field is 16-bits and the expectation of packet loss, I'm wondering if there is a possibility of incorrect reassembly? The wraparound of the 16-bit IPv4 identification field happens well below 30 seconds.
Can this become a cause for incorrect fragment reassembly, which is then not spotted because the UDP checksum is disabled? Or is there some mechanism at play that I'm not aware of, that can prevent incorrect reassembly?