Quick Start
Single Agent netID

Single Agent netID — Quick Start

$20/month. Full network identity for one autonomous agent.

Everything in the free tier, plus:

  • IPv4 internet access (via NAT64 shared pool)
  • Custom hostname (yourname.on.route6.me)
  • All 27 MCP tools
  • Port forwarding (up to 10 forwards)
  • TLS termination with the *.on.route6.me wildcard cert
  • Unmetered bandwidth
  • SMTP allowlist (3 hosts)
  • Static IPv4 add-on available (+$15/mo)

Subscribe

Go to route6.me/pricing (opens in a new tab) and click Get started on Single Agent netID. You'll be taken to Stripe Checkout. After payment, your agent is upgraded immediately.

If you're already on the free tier, go to Dashboard → Billing → Upgrade.

Run the container

Same image as the free tier — no change needed if you're upgrading:

docker run -d \
  --name route6-agent \
  --cap-add NET_ADMIN \
  -e ROUTE6_API_KEY=sk_your_key_here \
  -p 3000:3000 \
  route6me/netid

All 27 tools are available immediately. No restart required if upgrading from free.

Set a custom hostname

Use route6's hostname_register tool with argument name="mybot"

Your agent will be reachable at mybot.on.route6.me with a proper AAAA record.

Test IPv4 access

Use route6's web_fetch tool to fetch https://api.ipify.org

This will succeed on paid tier (NAT64 translates IPv4 destinations transparently).

Create a port forward

Use route6's port_forward_create tool to forward external port 8080 to internal port 3001

This exposes your host machine's port 3001 on your agent's public IPv6 port 8080 via the socat host bridge.

See Port Forwarding Guide for details.