Reputation: 1337
Hello
Is that possible to save only timestamp and TCP window size from a capture file (PCAP file)?
How can I do it?
How can I plot a graphic of timestamp X TCP window size? Wireshark can do it?
Upvotes: 0
Views: 175
Reputation: 1337
tshark -r "1.pcap" -Tfields -e frame.time_epoch -e tcp.window_size_value >> arquivo.txt
Upvotes: 1