协议过滤
代码语言:javascript复制http
sip
源地址过滤
代码语言:javascript复制ip.src
目的地址过滤
代码语言:javascript复制ip.dst
端口过滤
代码语言:javascript复制tcp.port == xx
udp.port == xx
源端口过滤
代码语言:javascript复制ip.src == x.x.x.x and tcp.port == xx
ip.src == x.x.x.x && tcp.port == xx
目的端口过滤
代码语言:javascript复制ip.dst == x.x.x.x and tcp.port == xx
ip.dst == x.x.x.x && tcp.port == xx