Ask Your Question
0

Does tshark currently support QUIC packet analysis ?

asked 2020-03-04 09:56:32 +0000

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 :)

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2020-03-04 12:55:51 +0000

grahamb gravatar image

updated 2020-03-04 14:06:19 +0000

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?

edit flag offensive delete link more

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 gravatar imagepiano-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 gravatar imagegrahamb ( 2020-03-04 14:06:07 +0000 )edit

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 2020-03-04 09:56:32 +0000

Seen: 462 times

Last updated: Mar 04 '20