tags:

views:

25

answers:

2

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
+1  A: 

Try

ip.dst == 172.16.3.255
Kevin Tighe
+1  A: 

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

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

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

Paul