2025-12-21 00:44:39 +00:00
---
summary: "Gateway dashboard (Control UI) access and auth"
read_when:
- Changing dashboard authentication or exposure modes
2026-01-31 16:04:03 -05:00
title: "Dashboard"
2025-12-21 00:44:39 +00:00
---
2026-01-31 21:13:13 +09:00
2025-12-21 00:44:39 +00:00
# Dashboard (Control UI)
2026-01-03 17:54:52 +01:00
The Gateway dashboard is the browser Control UI served at `/` by default
(override with `gateway.controlUi.basePath` ).
2025-12-21 00:44:39 +00:00
2026-01-07 00:41:31 +01:00
Quick open (local Gateway):
2026-01-31 21:13:13 +09:00
2026-02-06 10:08:59 -05:00
- [http://127.0.0.1:18789/ ](http://127.0.0.1:18789/ ) (or [http://localhost:18789/ ](http://localhost:18789/ ))
2026-01-07 00:41:31 +01:00
2025-12-21 00:44:39 +00:00
Key references:
2026-01-31 21:13:13 +09:00
2026-01-10 14:51:21 -06:00
- [Control UI ](/web/control-ui ) for usage and UI capabilities.
- [Tailscale ](/gateway/tailscale ) for Serve/Funnel automation.
- [Web surfaces ](/web ) for bind modes and security notes.
2025-12-21 00:44:39 +00:00
Authentication is enforced at the WebSocket handshake via `connect.params.auth`
2026-01-10 14:51:21 -06:00
(token or password). See `gateway.auth` in [Gateway configuration ](/gateway/configuration ).
2026-01-12 19:14:00 +00:00
2026-01-26 19:58:54 +00:00
Security note: the Control UI is an **admin surface** (chat, config, exec approvals).
Do not expose it publicly. The UI stores the token in `localStorage` after first load.
Prefer localhost, Tailscale Serve, or an SSH tunnel.
2026-01-12 19:14:00 +00:00
## Fast path (recommended)
2026-02-05 18:08:29 -08:00
- After onboarding, the CLI auto-opens the dashboard and prints a clean (non-tokenized) link.
2026-01-30 03:15:10 +01:00
- Re-open anytime: `openclaw dashboard` (copies link, opens browser if possible, shows SSH hint if headless).
2026-02-05 18:08:29 -08:00
- If the UI prompts for auth, paste the token from `gateway.auth.token` (or `OPENCLAW_GATEWAY_TOKEN` ) into Control UI settings.
2026-01-12 19:14:00 +00:00
2026-01-13 05:31:26 +00:00
## Token basics (local vs remote)
2026-02-05 18:08:29 -08:00
- **Localhost**: open `http://127.0.0.1:18789/` .
- **Token source**: `gateway.auth.token` (or `OPENCLAW_GATEWAY_TOKEN` ); the UI stores a copy in localStorage after you connect.
2026-02-21 13:03:08 +01:00
- **Not localhost**: use Tailscale Serve (tokenless for Control UI/WebSocket if `gateway.auth.allowTailscale: true` , assumes trusted gateway host; HTTP APIs still need token/password), tailnet bind with a token, or an SSH tunnel. See [Web surfaces ](/web ).
2026-01-13 05:31:26 +00:00
2026-01-12 19:14:00 +00:00
## If you see “unauthorized” / 1008
2026-02-05 18:08:29 -08:00
- Ensure the gateway is reachable (local: `openclaw status` ; remote: SSH tunnel `ssh -N -L 18789:127.0.0.1:18789 user@host` then open `http://127.0.0.1:18789/` ).
- Retrieve the token from the gateway host: `openclaw config get gateway.auth.token` (or generate one: `openclaw doctor --generate-gateway-token` ).
- In the dashboard settings, paste the token into the auth field, then connect.