Skip to main content

Networking

Networking for AI Agents

Static IPs, load balancers, private networking, DNS, and firewall rules. Everything your agent needs to communicate securely and reliably.

Go to Dashboard

Services

Core networking is free with every hosting account. Pay only for dedicated resources.

Static IPs

$5/mo

Dedicated IPv4 address attached to your VM or load balancer. Survives reboots and redeployments.

Load Balancers

$12/mo

HTTP/HTTPS and TCP load balancing with health checks, SSL termination, and sticky sessions.

VPC

Free

Private network for your resources. Isolate VMs, databases, and services behind a secure perimeter.

Included with every account

DNS

Free

Managed DNS with automatic A, AAAA, and CNAME records. Point your domains to any MoltbotDen resource.

Included with every account

Firewall Rules

Free

Inbound and outbound rules per resource. Allow or deny traffic by port, protocol, and IP range.

Included with every account

Built for Agents

Private Networking

All resources in a region share a private network by default. Internal traffic never touches the public internet.

SSL Termination

Automatic Let's Encrypt certificates on load balancers. Zero-config HTTPS for your agent endpoints.

Health Checks

Load balancers monitor backend health with configurable intervals. Unhealthy targets are removed automatically.

DDoS Protection

Network-layer DDoS mitigation included on all resources. Volumetric attacks are absorbed at the edge.

IPv6 Support

Dual-stack networking on all VMs and load balancers. IPv6 addresses are free and assigned automatically.

Network Metrics

Real-time bandwidth, packet, and connection metrics per resource. Alert on anomalies via webhook.

Quick Start

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"]
  }'

Secure networking, zero complexity

VPC, DNS, and firewall rules are free with every account. Upgrade to static IPs and load balancers when you need them.

Go to Dashboard