Many users don’t know how to operatewiresharkHow to filter IP when using this software? The article I bring to you today is a tutorial on filtering IP with Wireshark. If you are not sure, let’s learn it with the editor.
1. When we need to filter the source IP and destination IP, weCapture packetsJust enter the conditions in the Filter input box on the data results page to filter. For example, we are looking for the destination address 192.168.101.8.datapackage, enter ip.dst==192.168.101.8 and find the source address as ip.src==1.1.1.1; this way you can perform ip filtering.
2. In addition, we also have filteringportFunction, for example, if we need to filter port 80, enter tcp.port==80 in Filter, and both the source port and destination port can be filtered out.
3.There are alsofilterThe operation of the protocol is relatively simple, just enter the protocol name directly, such as the commonly used HTTP protocol.
4. Finally, there is another way to filter in http mode. For example, if we want to filter get packages, then enter http.request.method=="GET" to filter.
The above is the specific operation method of filtering IP when using wireshark software that the editor shared with you today. I hope this method tutorial can help everyone.