«

wireshark基本用法

作者:myluzh 分类: NETWORK 长度:514 阅读:421


报文过滤

支持 and与 or或 not非 组合

字段 说明
Addr 全部
Dst 目标
Src 源
eth.addr == ff:ff:ff:ff:ff:ff
eth.dst == xxx
eth.src == xxx
过滤二层
Ip.addr == 123.151.79.44
Ip.dst == xxx
Ip.src == xxx
过滤三层
Udp.dstport=x
Udp.srcport=x
Udp 端口是x
tcp.dstport=x
tcp.srcport=x
tcp,端口是x

wireshark


正文到此结束
版权声明:若无特殊注明,本文皆为 Myluzh Blog 原创,转载请保留文章出处。
文章内容:https://itho.cn/network/193.html
文章标题:《wireshark基本用法