I use the filter ip.addr != 10.0.0.0/8 && !(ip.addr == 224.0.0.0/3)
to identify any traffic between our network and the outside (and also exclude class-D address space). This filter no longer works.
It does work if I write it as ip && (!(ip.src == 10.0.0.0/8) || !(ip.dst == 10.0.0.0/8)) && !(ip.addr == 224.0.0.0/3)
but I need to add ip
and explicitly consider both the source and destination.