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
|
I tried
|
|||
|
|
|
Match destination: Match source: Match either: |
|||
|
|
|
If you only care about that particular machine's traffic, use a capture filter instead, which you can set under
Wireshark will only capture packet sent to or received by |
|||
|
|
|
You can also limit the filter to only part of the ip address. E.G. To filter 123...* you can use See WireShark man pages (filters) and look for Classless InterDomain Routing (CIDR) notation. |
|||
|
|
|
Filtering IP Address in Wireshark: (1)single IP filtering: ip.addr==X.X.X.X ip.src==X.X.X.X ip.dst==X.X.X.X (2)Multiple IP filtering based on logical conditions: OR condition: (ip.src==192.168.2.25)||(ip.dst==192.168.2.25) AND condition: (ip.src==192.168.2.25) && (ip.dst==74.125.236.16) |
||||
|
|