|
I want to filter IPs on a .cap file , I use the command ip.addr == 123.456.789 but this only filters out one IP , I was wondering if there was a way to filter out multiple IPs ? thanks |
|
ip.addr==x.x.x.x || ip.addr==y.y.y.y || ip.addr=z.z.z.z It works ,thanks
(26 Jul '12, 09:19)
helloworld0722
|
|
Another way, if they are contiguous, is to use:- ip.addr==10.10.10.10/24 This would display 10.10.10.1 - 10.10.10.254 This is also the way to filter on a subnet. Ok thank you !
(26 Jul '12, 12:28)
helloworld0722
|
