How to filter by IP address in Wireshark?

前端 未结 8 663
青春惊慌失措
青春惊慌失措 2021-01-29 17:39

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          


        
8条回答
  •  再見小時候
    2021-01-29 18:32

    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)

提交回复
热议问题