How do I filter using a range IPv4 addresses?
I am attempting to a track data from a range of IP addresses for servers in a cluster and cannot seem to get the verbiage correct to achieve this. I have tried:
ip.addr == 153.11.105.34/38
(expression is green, but nothing returns)ip.address == 153.11.105.34 or 153.11.105.35
(expression turn red)ip contains 153.11.105.34/38
(expression is green, but nothing shows as being captured but when I doip.addr ==
any of individual address in that range, it shows packets)host 153.11.105.34 or host 153.11.105.35
(expression turns red)ip host 153.11.105.34
(expression turns red)net 153.11.105.34
This is being attempted on 2.4.4
Thank you
Are you certain that
ip.addr == 153.11.105.34/38
(with 38 after the /, not some value between 1 and 32) doesn't turn the display filter box red?