If you are unable to connect to your website or hosting services, our DDoS mitigation system (Voxility) may be incorrectly blocking your connection. To resolve this, we need a Packet Capture (PCAP) from your local machine. This file shows us exactly how your traffic is being handled so we can "whitelist" your connection pattern.
📋 Prerequisites
-
You must run this test from the same computer and network that is experiencing the connection issue.
-
You will need the IP address of your server (provided by our support team).
🪟 Windows Instructions
The easiest way to capture traffic on Windows is using Wireshark.
-
Download & Install: Download Wireshark from wireshark.org.
-
Select Interface: Open Wireshark. You will see a list of interfaces (Wi-Fi, Ethernet). Double-click the one showing activity.
-
Set Filter: In the "Enter a capture filter" box at the top, type:
host YOUR_SERVER_IP(Replace with your actual server IP). -
Set Stop Limit: * Go to Capture > Options > Options Tab.
- Check "Stop capture automatically after..." and set it to 10000 packets.
-
Start & Reproduce: Click Start. While it is running, try to refresh your website or access your service 3–4 times in your browser.
-
Save: Once it stops (or after 60 seconds), go to File > Save As and save it as a
.pcapfile.
🍎 macOS Instructions
macOS users can use the built-in Terminal without installing extra software.
-
Open Terminal: (Command + Space, type "Terminal").
-
Find your Interface: Type
networksetup -listallhardwareportsto see if you are usingen0(usually Wi-Fi) oren1. -
Run the Capture: Copy and paste the following command (replace
en0if needed andYOUR_SERVER_IPwith the server IP):Bash
sudo tcpdump -i en0 -c 10000 -p -w connection_test.pcap host YOUR_SERVER_IP -
Authenticate: Enter your Mac password when prompted.
-
Reproduce: While the terminal is "waiting," try to access your website in your browser. The command will finish automatically once it hits the packet limit.
-
Submit: The file
connection_test.pcapwill be saved in your user folder.
🐧 Linux Instructions (Desktop/Local)
Most Linux distributions have tcpdump installed by default.
-
Open your Terminal.
-
Run the Capture: Use the following command (replace
eth0with your interface name, e.g.,wlan0for Wi-Fi):Bash
sudo tcpdump -i eth0 -c 10000 -w local_capture.pcap host YOUR_SERVER_IP -
Reproduce: Try to connect to your website/service. The capture will automatically stop after 10,000 packets.
-
Submit: Find
local_capture.pcapin your current directory.
📤 Submitting Your Results
To help us resolve the block quickly, please attach the resulting file to your support ticket and include the following:
-
Your Public IP Address: (Visit whatsmyip.org to find this).
-
The Timestamp: What time (and timezone) did you perform this test?
-
The Error: What specific error do you see in your browser (e.g., "Connection Timed Out")?