Wireshark Display Filter
If we want to see everything which source IP is 192.168.0.205 we can use this kind of filter (src = source): ip.src == 192.168.0.205
and if we want to see everything which destination IP is 192.168.0.205 we can use this kind of filter (dst = destination): ip.dst == 192.168.0.205
Sometimes […]