Getting Started
Getting Started with Web Portal
The easiest way to get started with doxx.net is through our web portal at a0x13.doxx.net.
1. Create an Account
- Go to a0x13.doxx.net
- Enter your email address on the “Create Account” area
- Click on the “Create Account” button
- You will receive an email with your authentication token
2. Create Your First Tunnel
After creating your account, login to the portal at a0x13.doxx.net to create your first tunnel.
To create a tunnel, simply:
- (optional) Name your tunnel (helpful in security console)
- Select the tunnel type (most common is WireGuard)
- Select the server (your enter node from your network and exit node to the Internet)
- Click on the “Create Tunnel” button
For advanced users, you can select the “Advanced” tab and configure the tunnel further.
Learn more about advanced tunnel configuration →
3. Install and Connect with a Client
Download the appropriate client for your system from our downloads page
Follow the installation instructions for your platform
For WireGuard users: Use the “Install Tunnel your device” option in the a0x13 portal.
- For mobile users you can use the QR code
- Most users can download the doxx.net.conf file to install on their devices.
For doxx.net clients (advanced users):
- Download the doxx.net client for your platform from the downloads page
- Follow the instructions to install the client
- Use the tunnel token found in the a0x13 portal to connect -tunnel and select the server you would prefer to use.
Detailed installation instructions →
Advanced Users: doxx.net client
Choose your preferred connection method:
# TCP Encrypted (Recommended)
sudo ./doxx.net -server tcp-encrypted.mia.us.doxx.net:443 -token YOUR_TUNNEL_TOKEN
# HTTPS Mode
sudo ./doxx.net -server https.mia.us.doxx.net:443 -token YOUR_TUNNEL_TOKEN
Learn more about connection types →
Getting Started with API
For developers and advanced users who prefer working with APIs, we offer complete API access to all features.
1. Create an Account
# Using curl
curl -X POST -d "[email protected]" https://setup.doxx.net/
# Using wget
wget --post-data "[email protected]" https://setup.doxx.net/
If you’re in a region where doxx.net is blocked, use one of these Cloudflare edge servers:
# Americas Edge
curl -X POST --connect-to setup.doxx.net:443:198.41.214.162 https://setup.doxx.net/ -d "[email protected]"
# Europe Edge
curl -X POST --connect-to setup.doxx.net:443:198.41.215.162 https://setup.doxx.net/ -d "[email protected]"
# Asia Edge
curl -X POST --connect-to setup.doxx.net:443:198.41.216.162 https://setup.doxx.net/ -d "[email protected]"
2. Create a Tunnel
After receiving your authentication token via email, create a tunnel:
# For WireGuard tunnel
curl -X POST https://setup.doxx.net/ \
-d "token=YOUR_TOKEN" \
-d "type=wireguard" \
-d "create_tunnel=1"
# For TCP-encrypted tunnel
curl -X POST https://setup.doxx.net/ \
-d "token=YOUR_TOKEN" \
-d "type=tcp-encrypted" \
-d "create_tunnel=1"
The rest of the setup process (client installation and connection) remains the same as the web portal method.