Learn Python, Microsoft 365 and Google Workspace
To filter specific traffic using Wireshark, you can use display filters to narrow down the packets of interest. Here are some common Wireshark filter tasks that can be helpful for practical scenarios:
http
tcp
udp
dns
dhcp
ip.addr == 192.168.1.1
ip.src == 192.168.1.1
ip.dst == 192.168.1.1
tcp.port == 80
tcp.port == 80 or tcp.port == 443
eth.src == 00:11:22:33:44:55
eth.dst == 00:11:22:33:44:55
ip.addr == 192.168.1.0/24
The IP address 192.168.1.0/24
represents a subnet in the world of IP addressing. Let’s break it down:
192.168.1.0/24
:192.168.1.0
(Network Address):
192.168.x.x
is a common range for home and small business networks./24
(Subnet Mask):
/24
means that the first 24 bits of the IP address are reserved for the network portion, and the remaining 8 bits are used for the host portion (devices within the network)./24
is 255.255.255.0, which is equivalent to 24 network bits.192.168.1.0/24
Represent?Network Address: 192.168.1.0
is the network identifier for the subnet. It is not assigned to any device.
An IPv4 address is 32 bits, and in CIDR notation, we divide this into two parts:
.1
, .2
, .3
, … up to .254
).For the network 192.168.1.0/24
:
This setup allows for 254 usable IP addresses (from .1
to .254
) that can be assigned to hosts (e.g., computers, printers, phones) on the network.
192.168.1.0
is the network identifier, and the /24
means the first 24 bits are used for the network, leaving 8 bits for the hosts./24
allows for 254 devices on the network (usable IPs from 192.168.1.1 to 192.168.1.254).This type of subnetting is typical in home and small office networks.
http.request.method == "GET"
http.request.method == "POST"
frame.time >= "Sep 26, 2024 14:00:00" && frame.time <= "Sep 26, 2024 14:30:00"
frame.len > 1000
http.request and frame contains "GET"
http.request and frame contains "POST"
icmp.type == 8
icmp.type == 0
frame contains "https://example.com"
ACK
in TCP packet info:
frame contains "ACK"
http.response.code == 200
http.response.code == 404