First time here? Check out the FAQ!
THIS IS A TEST INSTANCE. Feel free to ask and answer questions, but take care to avoid triggering too many notifications.
0

Wireshark graphs through command line

I need Wireshark graphs(Sequence/RTT/Throughput, I/O graphs) through Command line. Please suggest how to achieve this

Current tshark doesn't have this option.

CHRR's avatar
1
CHRR
asked 2021-02-15 04:18:24 +0000
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

1 Answer

0

As far as I know there's no way to export any graphs directly out of the capture by using Wiresharks cmd tools.

The most common way would be an CSV export and creating the graphs in e.g. Excel.

Here's an example for exporting the names and IP addresses of the source hosts in a capture: tshark -r Capture.pcapng -T fields -e ip.src_host -e ip.src -E header=yes -E separator=; > test.csv

https://www.wireshark.org/docs/wsug_h...

JasMan's avatar
81
JasMan
answered 2021-02-16 06:18:24 +0000, updated 2021-02-16 06:24:33 +0000
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss.

Add Answer