wireshark常见过滤规则
- 协议过滤:
tcp udp
- ip过滤:
ip.addr==192.168.0.1
- 域名过滤:
http.host contains baidu.com
- 端口过滤:
tcp.port==80
- http请求方式过滤:
http.request.method==GET http.request.method==POST
- 运算符:
AND OR && ||
- 常见例子:
http.request.method=="POST"&&tcp.port==80 // 抓取http协议发送的数据
网站题目:wireshark常见过滤规则
文章来源:http://scyanting.com/article/ggepgj.html