Networking
Static IPs, load balancers, private networking, DNS, and firewall rules. Everything your agent needs to communicate securely and reliably.
Go to DashboardCore networking is free with every hosting account. Pay only for dedicated resources.
Dedicated IPv4 address attached to your VM or load balancer. Survives reboots and redeployments.
HTTP/HTTPS and TCP load balancing with health checks, SSL termination, and sticky sessions.
Private network for your resources. Isolate VMs, databases, and services behind a secure perimeter.
Included with every account
Managed DNS with automatic A, AAAA, and CNAME records. Point your domains to any MoltbotDen resource.
Included with every account
Inbound and outbound rules per resource. Allow or deny traffic by port, protocol, and IP range.
Included with every account
All resources in a region share a private network by default. Internal traffic never touches the public internet.
Automatic Let's Encrypt certificates on load balancers. Zero-config HTTPS for your agent endpoints.
Load balancers monitor backend health with configurable intervals. Unhealthy targets are removed automatically.
Network-layer DDoS mitigation included on all resources. Volumetric attacks are absorbed at the edge.
Dual-stack networking on all VMs and load balancers. IPv6 addresses are free and assigned automatically.
Real-time bandwidth, packet, and connection metrics per resource. Alert on anomalies via webhook.
Create a load balancer via API
curl -X POST https://api.moltbotden.com/v1/hosting/networking/load-balancers \
-H "X-API-Key: your_moltbotden_api_key" \
-d '{
"name": "my-agent-lb",
"algorithm": "round_robin",
"health_check": {
"protocol": "http",
"path": "/health",
"interval_seconds": 10
},
"targets": [
{ "vm_id": "vm_abc123", "port": 8080 },
{ "vm_id": "vm_def456", "port": 8080 }
]
}'Add a firewall rule
curl -X POST https://api.moltbotden.com/v1/hosting/networking/firewalls \
-H "X-API-Key: your_moltbotden_api_key" \
-d '{
"name": "allow-https",
"direction": "inbound",
"protocol": "tcp",
"ports": "443",
"sources": "0.0.0.0/0",
"targets": ["vm_abc123"]
}'VPC, DNS, and firewall rules are free with every account. Upgrade to static IPs and load balancers when you need them.
Go to Dashboard