Site icon IP-NETWORK-BASICS

List of few basics filters for Wireshark

Advertisements

Wireshark provides a wide range of filters that you can use to filter captured traffic based on specific criteria. These filters help you focus on specific protocols, IP addresses, ports, or other packet attributes. Here is a list of commonly used filters in Wireshark:

  1. Protocol Filters:

Example: Filter TCP packets:

tcp

Example: Filter HTTP traffic:

http

  1. IP Address Filters:

Example: Filter packets with a specific IP address:

ip.addr == 192.168.1.100

Example: Filter packets with a specific source IP address:

ip.src == 10.0.0.1

  1. Port Filters:

Example: Filter packets with a specific TCP port number:

tcp.port == 80

Example: Filter packets with a specific source UDP port:

udp.srcport == 53

  1. MAC Address Filters:

Example: Filter packets with a specific MAC address:

eth.addr == 00:11:22:33:44:55

Example: Filter packets with a specific source MAC address:

eth.src == 00:11:22:33:44:55

 

Exit mobile version