1 | initial version |
If:
Then you can filter on the stream delta times:
udp.time_delta > 0.025
or tcp.time_delta > 0.025
Another way would be to filter or search on the frame.number itself being odd or even in combination with the IP addresses, but then you need to know the starting conditions. If IP1 is on the odd frame.numbers and IP2 is on the even frame.numbers, then the following filter will spot packets that do not follow the pattern:
(ip.addr==<IP1>and not frame.number&1) or (ip.addr==<IP2> and frame.number&1)