frame contains <thing to search>
For example:
Go to View -> Name Resolution -> Check the box next to Resolve Network Addresses
Resource: https://unix.stackexchange.com/questions/390852/how-to-filter-by-host-name-in-wireshark
If you want to only show TLS v1.2 traffic, then you would run:
ssl.record.version == 0x0303
Versions:
Resource: https://security.stackexchange.com/questions/190532/filter-tls-in-wireshark-or-other-monitoring-tool
tcpdump tcp -w output.pcap
Resource: https://medium.com/swlh/introduction-to-tcpdump-635653f56177
In this case, we are filtering icmp traffic on the eth0 interface where the
ICMP type field value is icmp-echo. We finish it with a full protocol
decode (-vv) aka verbose output.
tcpdump -i eth0 icmp and icmp[icmptype]=icmp-echo -vv
Resources: http://alumni.cs.ucr.edu/~marios/ethereal-tcpdump.pdf http://www.networksorcery.com/enp/protocol/icmp/msg8.htm
tcpdump -i eth0 -nn port 389