How to filter by IP address in Wireshark?

前端 未结 8 676
青春惊慌失措
青春惊慌失措 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:28

    You can also limit the filter to only part of the ip address.

    E.G. To filter 123.*.*.* you can use ip.addr == 123.0.0.0/8. Similar effects can be achieved with /16 and /24.

    See WireShark man pages (filters) and look for Classless InterDomain Routing (CIDR) notation.

    ... the number after the slash represents the number of bits used to represent the network.

提交回复
热议问题