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

Does tshark currently support QUIC packet analysis ?

I can see that wireshark successfully dissects QUIC packets. Is this possible using tshark as well ? If yes, what command will give the desired result?

Thanks :)

piano-man's avatar
1
piano-man
asked 2020-03-04 09:56:32 +0000
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

1 Answer

0

Wireshark and tshark use the same dissection code, so tshark can output the same dissection results as Wireshark. Normally the arguments you give to tshark are the capture file to use and any display filters required, see the tshark man page for more details.

What is the result you want?

grahamb's avatar
23.8k
grahamb
answered 2020-03-04 12:55:51 +0000, updated 2020-03-04 14:06:19 +0000
edit flag offensive 0 remove flag delete link

Comments

Essentially, I want to view the packet in the same format that it gets displayed in wireshark i.e. frame details followed by IP details followed by UDP details followed by QUIC details.

piano-man's avatar piano-man (2020-03-04 13:11:14 +0000) edit

Then you would use the -V output option, (uppercase V), e.g.

tshark -r path\to\my\capture.pcapng -V

On Windows you may also have to prefix the command with the path to tshark.exe, e.g.

"C:\Program Files\Wireshark\tshark.exe" ...
grahamb's avatar grahamb (2020-03-04 14:06:07 +0000) edit
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