Hi Can anyone help me to filter a display so that it shows all traffic between just three IP's, please? I can successfully filter for two IP's, ip.addr==x.x.x.x && ip.addr==y.y.y.y but trying to filter the display so that it shows three IP's results in the majority of the capture being displayed. Thanks! asked 13 Oct '16, 08:06 Blood |
One Answer:
If you name the 3 PC's a, b and c then the traffic you want is:
So that gives a filter of:
answered 13 Oct '16, 09:37 grahamb ♦ edited 13 Oct '16, 12:34 |
Going with this notation it should be possible to compress this into
(ip.addr == A && (ip.addr == B || ip.addr == C)) || (ip.addr == B && ip.addr == C)
First part picks up the legs A <-> B and A <-> C, where the last part covers the leg B <-> C
Ha! No wonder I could not get it to work.
Thanks very much for the help!