Wireshark Cheat Sheet

Display Filters

OperatorDescriptionExample
eq or ==Equalip.dest  ==  192.168.1.1
ne or !=Not equalip.dest  !=   192.168.1.1
gt or >Greater thanframe.len   >   10
it or <less thanframe.len  <   10
ge or >=Greater than or equalframe.len  >=   10
le or <=Less than or equalframe.len  <=   10

Filtering Commands

UsageFilter Syntax
Wireshark Filter by IPip.add == 192.168.1.1
Filter by Destination IPip.dest == 192.168.1.1
Filter by Source IPip.src == 192.168.1.1
Filter by IP rangeip.addr >= 192.168.1.1 and ip.addr <=192.168.1.123
Filter by Multiple Ipsip.addr == 192.168.1.1 and ip.addr == 192.168.1.123
Filter out IP adress! (ip.addr == 192.168.1.1)
Filter subnetip.addr == 192.168.1.1/24
Filter by porttcp.port == 80
Filter by destination porttcp.dstport == 80
Filter by ip adress and portip.addr == 192.168.1.1 and Tcp.port == 80
Filter by URLhttp.host == “name”
Filter by time stampframe.time >= “Dec 24, 2025 12:00:00”
Filter SYN flagTcp.flags.syn == 1 and tcp.flags.ack ==0
Wireshark Beacon Filterwlan.fc.type_subtype = 0x08
Wireshark broadcast filtereth.dst == ff:ff:ff:ff:ff:ff
Wireshark multicast filter(eth.dst[0] & 1)
Host name filterip.host = hostname
MAC address filtereth.addr == xx:xx:xx:xx:xx:xx
RST flag filtertcp.flag.reset == 1