wireshark 过滤消息
时间: 2024-01-16 12:18:56 浏览: 60
wireshark过滤
以下是两种Wireshark过滤消息的方法:
1. 过滤目的地址为192.168.101.8的包:
```
ip.dst==192.168.101.8
```
2. 过滤源地址为1.1.1.1的包:
```
ip.src==1.1.1.1
```
3. 过滤源地址为192.168.101.8并且为http协议的包:
```
ip.src==192.168.101.8 and http
```
阅读全文