This is a static archive of our old Q&A Site. Please post any new questions and answers at ask.wireshark.org.

Saving timestamp and tcp window size as CSV file or txt file

0

Hello

Is that possible to save only timestamp and TCP window size from a capture file (PCAP file)?

How can I do it?

asked 28 May '17, 07:00

foxmodem's gravatar image

foxmodem
6224
accept rate: 0%


One Answer:

0

On a command line you can use tshark to do that for you, e.g.

tshark -r "sample.pcap" -Tfields -e frame.time -e tcp.window_size_value

-TFields tells tshark to print field values, and the -e parameters specify the display filter name of the field you want.

answered 28 May '17, 07:05

Jasper's gravatar image

Jasper ♦♦
23.8k551284
accept rate: 18%

Thanks. I will try!

How can I plot a graphic of timestamp X TCP window size? Wireshark can do it?

(28 May '17, 07:15) foxmodem

Try Statistics - TCP Stream Graphs - Window Scaling

(28 May '17, 07:18) Jasper ♦♦