If you want stable subdomains or paid tunnel controls like passwords and TTLs, upgrade to PRO from the CLI.
Before you upgrade
Make sure you’re authenticated first:
tunnee auth login --email you@example.com If you’re already logged in, you can skip this.
See available plans
tunnee billing plans This shows the available plan lookup keys, prices, and billing intervals.
Upgrade to PRO
The simplest path is:
tunnee billing subscribe By default, the CLI picks the monthly recurring plan.
If you want a specific plan, pass its lookup key:
tunnee billing subscribe standart_monthly The CLI creates a Stripe Checkout session, prints the URL, and asks whether it should open it in your browser.
Confirm that PRO is active
After checkout completes, verify your account state:
tunnee account show Look for Subscribed: Yes.
You can also manage billing later with:
tunnee billing portal That opens the Stripe Customer Portal for payment methods, invoices, and subscription management.
What PRO unlocks
- Persistent subdomains for stable public endpoints across restarts
--ttl <duration>on tunnel commands--password <value>to protect a tunnel- Consent controls for paid tunnels with
--no-consentontunnee open
Common PRO commands
Open a PRO tunnel with a fixed subdomain and password:
tunnee open --port 3000 --subdomain demo --password secret123 Open a tunnel that expires automatically:
tunnee open --port 3000 --ttl 24h Reserve a persistent subdomain for later reuse:
tunnee tunnels reserve demo Reserve a persistent subdomain with paid options:
tunnee tunnels reserve demo --ttl 24h --password secret123 --consent no How it works
tunnee billing plansfetches the available billing plans from the API.tunnee billing subscribecreates a Stripe Checkout session for the plan you choose.- After payment succeeds, your Tunnee account becomes subscribed.
- Tunnel commands then allow the paid-only options documented in the CLI reference.
What next
- Open a tunnel if you want to use PRO features right away
- Billing for the full CLI billing reference
- Tunnels for reserved subdomains and advanced tunnel management