How to make a network dump (pcap)
A network dump (packet capture) helps our team analyze connection issues and data loss. Step-by-step instructions for Windows, Linux and macOS.
A network dump (packet capture, .pcap) records every packet your computer sends and receives. When connection issues are hard to diagnose, support can read the dump and pinpoint exactly what went wrong on the wire — drops, retransmissions, RSTs, slow handshakes, MTU mismatches, …
Pick the instructions for your operating system below.
Option 1 — Windows (Wireshark)
- Download and install Wireshark.
- Open Wireshark and select your active network connection (e.g. Wi-Fi or Ethernet) — but do not start it yet.
- Filter by IP (optional, recommended): if support asked you to capture traffic for a specific server, it's much cleaner to filter to it.
- Locate the "Capture filter" bar above the interface list.
- Type:
host 85.239.155.123— replace with the required IP. - The bar turns green when the syntax is correct.
- Double-click your network connection (or click the blue Shark Fin icon) to start.
- Important: go back to your application or browser and reproduce the error while Wireshark is recording.
- Return to Wireshark and click the red Square icon (Stop) in the top-left.
- Go to File → Save As… and save the file as a
.pcap(e.g.issue.pcap). - Attach the
.pcapto your support ticket.
Without the IP filter you'll capture every packet on the interface — fast-growing file, harder to read, and may leak unrelated traffic. Always filter when you can.
Option 2 — Linux (tcpdump)
- Open a terminal.
- Run one of the following commands. Both require
sudo/root.Capture everything (no filter):
sudo tcpdump -i any -w capture.pcapCapture a specific server only (recommended):
Replace
1.2.3.4with the server IP:sudo tcpdump -i any host 1.2.3.4 -w capture.pcap - Important: go back to your application or browser and reproduce the error while the command is running.
- Return to the terminal and press
Ctrl+Cto stop the recording. - The file
capture.pcapis now saved in the current directory. Attach it to your support ticket.
Iftcpdumpisn't installed:
- Debian / Ubuntu:
sudo apt install tcpdump- RHEL / Fedora:
sudo dnf install tcpdump
Option 3 — macOS
macOS works with both approaches above:
- GUI: install Wireshark for macOS and follow the Windows steps.
- Terminal:
tcpdumpis pre-installed — follow the Linux steps. You don't need to install anything.
Tips
- Reproduce the error during capture. A capture that doesn't contain the problem is useless. Start the capture, then trigger the issue, then stop.
- Keep it short. 30 seconds to a few minutes is usually enough. Big files (>50 MB) take longer to upload and analyze.
- Filter when possible. Capturing only
host <server-ip>keeps the file small and avoids leaking unrelated traffic. .pcapfiles can contain sensitive data (TLS handshakes, cookies, headers from other apps). Send them only through your support ticket, not public chat.
With a clear, focused network dump, our team can diagnose the problem far faster and get you back to a stable connection.
Was this article helpful?
Be the first to rate it