Skip to content

Ports

Every well-known port in the system, in one table. The short version: nothing you run at home listens on the network. The gateway and CLI only dial out (WSS to a relay), the gateway's console binds loopback only, and the only component that opens public ports is a relay — the system relay fleet, or an edge you host yourself.

PortComponentBindPurpose
443/tcpRelay (system + edge)publicThe WSS carrier endpoints everything dials: gateways (/ws/gateway + /ws/gateway/signal), clients (/ws/client), and the relay's own links up to the console. On an edge this is the tls_listen listener, default :443, settable or off for a LAN-only edge. With the nginx front installed, nginx owns :443 and passes through.
443/udp (QUIC)Relay (system + edge)public, optionalThe QUIC transport on the system relay fleet. On an edge, QUIC has no default — it is off unless quic_addr is set in ~/.burrowee/edge/config (or --quic-addr), and it binds exactly the address you give; nginx does not front it.
16518/tcpGateway127.0.0.1 onlyThe local console — the gateway's web UI + JSON API. Never reachable from the network; disable with --console off.
8448/tcpEdgeLAN interfacesThe nginx LAN TLS front (nginx --listen-lan, default 8448). Terminates the pinned LAN cert and proxies to the edge's loopback listener below. This is the port advertised in LAN endpoints.
9448/tcpEdge127.0.0.1 onlyThe edge's plain-WS LAN listener (lan_listen, default 127.0.0.1:9448) — only ever reached through the nginx front on 8448.
9100/tcpConsole (server-side)127.0.0.1 onlyThe burrowee-console control-plane upstream (--addr, default 127.0.0.1:9100), fronted by nginx in production. Listed for completeness — it runs on Burrowee's servers, not on anything you install.
ephemeralCLI127.0.0.1:0The local forward listener connect/ssh opens for each tunnel (--local to pin one). ssh always uses an ephemeral loopback port.

Unix sockets (not TCP, listed for completeness)

SocketComponentPurpose
~/.burrowee/cli/sockets/transport.sockCLI daemonTransport IPC — stream consumers and relays use/priority/pair/probe (not relays list, which reads config.json)
~/.burrowee/gateway/sockets/register.sockGatewayburrowee-register registers local services

Each lives under its component home (~/.burrowee/<cli\|gateway>/sockets/). On a pathologically long home path the transport socket overflows to $XDG_RUNTIME_DIR/burrowee/transport.sock (OS temp dir when XDG_RUNTIME_DIR is unset) and the register socket to the fixed path /usr/local/var/burrowee/gateway/sockets/register.sock. Paths and overrides: Config homes & files.

What dials what

Outbound-only summary — useful for firewall rules:

FromToProtocol
CLIrelay :443 (and QUIC if configured); LAN-published edge origins first when presentWSS / QUIC
Gatewayevery configured relay :443WSS (carrier + signal)
Edgethe Burrowee console (compiled-in host)WSS (carrier + signal) + HTTPS
Gateway → local servicee.g. 127.0.0.1:22 on the gateway hostplain TCP (the target you exposed)