First time here? Check out the FAQ!
answered 2019-11-19 20:28:46 +0000
tshark -r <file.pcap> -Y "tcp.stream==278 && tcp.len==1460" | wc -l
or get an overview of all the lengths:
tshark -r <file.pcap> -Y "tcp.stream==278" -T fields -e tcp.len | sort -rn | uniq -c