set a filter of packet length in wireshark

谁都会走 提交于 2019-12-03 08:16:44

问题


I've capture a pcap file and display it on wireshark. I want to analysis those udp packets with 'Length' column equals to 443.

On wireshark, I try to found what's the proper filter.

udp && length 443 # invalid usage
udp && eth.len == 443 # wrong result
udp && ip.len == 443 # wrong result

By the way, could the wireshark's filter directly apply on libpcap's filter?


回答1:


All these workable on wireshark's filter

frame.len==243  <- I use this
ip.len=229
udp.length==209
data.len=201


来源:https://stackoverflow.com/questions/10022710/set-a-filter-of-packet-length-in-wireshark

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!