Wireshark常用命令

1、本机发往192.168.0.2机器的数据包:

ip.src==192.168.0.1 and ip.dst==192.168.0.2

2、本机发往192.168.0.2/192.168.0.3机器的数据包:

ip.dst==192.168.0.2 and ip.dst==192.168.0.3

3、本机发往及接收192.168.0.2机器的数据包:

ip.src==192.168.0.2 or ip.dst==192.168.0.2
原文地址:https://www.cnblogs.com/configure/p/7066262.html