filter standard website reqests wireshark code example
Example 1: wireshark filter dns on tcp port
tcp.port == 53 for TCP traffic
and
dup.port == 53 for UDP traffic
Example 2: wireshark filter by ip
// Filter sender ip:
ip.src == (IP Adress)
// Filter destination ip:
ip.dst == (IP Adress)