Home:ALL Converter>set a filter of packet length in wireshark

set a filter of packet length in wireshark

Ask Time:2012-04-05T12:30:02         Author:Daniel YC Lin

Json Formatter

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?

Author:Daniel YC Lin,eproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/10022710/set-a-filter-of-packet-length-in-wireshark
yy