Wireshark Filters Cheat Sheet: Find the Signal Fast
Updated on March 05, 2026 14 minutes read
Capture filters limit what gets recorded during capture (BPF syntax). Display filters control what you see after capture (Wireshark syntax) and are much more powerful for analysis.
Usually, you used the wrong syntax (capture filter in display bar), misspelled a field name, forgot quotes around a string, or referenced a protocol that isn’t present in the capture.
Sometimes, yes, if you have the right keys/logs and configure Wireshark properly. Even without decryption, you can still analyze TLS handshakes, SNI, certificate details, and performance symptoms.
Start with ip.addr == X, dns, tcp, tls, tcp.port == 443, and tcp.analysis.retransmission. These cover common troubleshooting for web, DNS, and performance.
For DNS, use dns.qry.name == "example.com" or dns.qry.name contains "example". For HTTPS, you can often filter by SNI using tls.handshake.extensions_server_name contains "example.com".