How to filter by IP address in Wireshark?

Alan picture Alan · Oct 28, 2010 · Viewed 535.7k times · Source

I tried dst==192.168.1.101 but only get :

Neither "dst" nor "192.168.1.101" are field or protocol names.

The following display filter isn't a valid display filter:
dst==192.168.1.101

Answer

The Archetypal Paul picture The Archetypal Paul · Oct 28, 2010

Match destination: ip.dst == x.x.x.x

Match source: ip.src == x.x.x.x

Match either: ip.addr == x.x.x.x