Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

WSUG 6.4.5. Membership Operator:

ip.addr in {10.0.0.5 .. 10.0.0.9, 192.168.1.1..192.168.1.9}

Display Filter Macro:

"private_nets","{192.168.0.0/16,172.16.0.0/12, 10.0.0.0/8}"

Display Filter:

ip.src in ${private_nets} and ip.dst in ${private_nets}

The macro and filter above result in same number of displayed packets as:

ip.src in {192.168.0.0/16,172.16.0.0/12, 10.0.0.0/8} and ip.dst in {192.168.0.0/16,172.16.0.0/12, 10.0.0.0/8}

Test and verify with your own data.