Hi,
just out of innane curiousity
Martin Regner wrote:
Yaniv Kaul wrote:
When trying to run: ip.addr != 1.2.3.4 It didn't filter the packets: 1.2.3.4 -> 1.2.3.255 1.2.3.4 -> 224.2.223.232
Is that ok/known?
There are two ip.addr fields in the ip-header.
Read chapter 6.3.4 "A common mistake" in the Ethereal User guide
http://www.ethereal.com/docs/user-guide/ChWorkBuildDisplayFilterSection.html
The filter "! (ip.addr == 1.2.3.4)" is maybe want you should use or "ip and !(ip.addr == 1.2.3.4)" (if you only want ip-packets).
Another alternative is to use "(ip.src != 1.2.3.4) and (ip.dst != 1.2.3.4)"
_______________________________________________ Ethereal-dev mailing list Ethereal-dev@xxxxxxxxxxxx http://www.ethereal.com/mailman/listinfo/ethereal-dev
Powered by MHonArc 2.6.10