Manage multiple MikroTik routers with WireGuard VPN from a single dashboard. Easy setup, remote access without VPN, and powerful API integration.
Everything you need to manage your MikroTik routers and WireGuard VPN infrastructure
Manage unlimited MikroTik routers from a single dashboard. Monitor status, CPU, memory, and VPN peers in real-time.
Modern, fast, and secure VPN using WireGuard protocol. Auto-generate client configs with QR codes for easy mobile setup.
Full REST API for integration with billing systems, automation scripts, and third-party applications. Create hotspot users programmatically.
Access Winbox and WebFig directly without VPN connection. Manage your routers from anywhere using port forwarding.
Works with routers behind NAT or CGNAT. Management tunnel ensures connectivity even without public IP addresses.
Fully responsive design works on any device. Manage your VPN infrastructure from your phone or tablet.
Get started in minutes with our simple setup process
Install on any Ubuntu VPS. Automatic setup of WireGuard, database, and web panel.
Register your MikroTik routers through the web panel. Copy the generated script and paste it into MikroTik terminal.
Generate VPN client configurations with one click. Scan QR codes on mobile or download config files for desktop.
Integrate with your existing systems using our comprehensive REST API. Perfect for WiFi billing systems, automation scripts, and custom applications.
Create, update, and delete hotspot users programmatically
Run any MikroTik RouterOS command via API
Access routers through the API without VPN connection
# Get router system info
curl http://your-domain:3001/api/proxy/router-name/system
# Create hotspot user
curl -X POST http://your-domain:3001/api/proxy/router-name/command \
-H "Content-Type: application/json" \
-d '{
"command": "/ip/hotspot/user",
"action": "add",
"params": {
"name": "user123",
"password": "pass123",
"profile": "1 Day"
}
}'
# Get DHCP leases
curl http://your-domain:3001/api/proxy/router-name/ip/dhcp-server/leases