Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
ngtcp2
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Kashyap Thimmaraju
ngtcp2
Commits
3b8b4518
Commit
3b8b4518
authored
5 years ago
by
Daniel Bevenius
Browse files
Options
Downloads
Patches
Plain Diff
Add Wireshark configuration steps
This commit adds information about configuring Wireshark for analyzing QUIC traffic.
parent
256499c8
Branches
Branches containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.rst
+38
-0
38 additions, 0 deletions
README.rst
with
38 additions
and
0 deletions
README.rst
+
38
−
0
View file @
3b8b4518
...
...
@@ -139,6 +139,44 @@ The library file is built for a particular TLS backend. At the
moment, libngtcp2_crypto_openssl which uses OpenSSL as TLS backend is
provided.
Configuring Wireshark for QUIC
------------------------------
`Wireshark <https://www.wireshark.org/download.html>`_ can be configured to
analyze QUIC traffic using the following steps:
**1.** Set *SSLKEYLOGFILE* environment variable:
.. code-block:: text
$ export SSLKEYLOGFILE=quic_keylog_file
**2.** Set the port that QUIC uses
Go to *Preferences->Protocols->QUIC* and set the port the program listens to.
In the case of the example application this would be the port specified on the
command line.
**3.** Set Pre-Master-Secret logfile
Go to *Preferences->Protocols->TLS* add set the *Pre-Master-Secret log file*
to the same value that was specified for *SSLKEYLOGFILE*.
**4.** Choose the correct network interface for capturing
Make sure you choose the correct network interface for capturing. For example,
if using localhost choose the *loopback* network inteface on macos.
**5.** Create a filter
Create A filter for the udp.port and set the port to the port the application
is listening to. For example:
.. code-block:: text
udp.port == 7777
License
-------
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment