1 | initial version |
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.
2 | No.2 Revision |
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_html_chunked/AppToolstshark.html