mbakholdina / lib-tcpdump-processing

Library designed to process .pcap(ng) tcpdump or Wireshark trace files and extract SRT packets of interest for further analysis
15 stars 3 forks source link

results of three scripts #42

Closed SeanOntheWay closed 1 year ago

SeanOntheWay commented 1 year ago

Thank you for the tool!!! But when I ran venv/bin/extract-packets [OPTIONS] PATH,venv/bin/get-traffic-stats [OPTIONS] PATH and venv/bin/plot-snd-timing [OPTIONS] PATH,they gave me the same.csv file in the end.Here is the result(part of it): image And they gave me the same error report: image I really want to get the other two results of the scripts...what can I do

mbakholdina commented 1 year ago

Hi @SeanOntheWay,

The output .csv file you get would be the same, because it's just a processing and parsing of the tshark dump file into .csv format.

If you would like to extract packets of a particular type, e.g., DATA packets only, use the

--type [srt|data|control|probing|umsg_handshake|umsg_ack]

option of the extract-packets script as described here. In addition to the main .csv file with all the packets, you would also get another one with packets of interest only.

get-traffic-stats script doesn't produce any other files, the output report would be printed in the terminal.