Network Requirements
Before starting the Optimum Gateway, ensure your firewall allows these ports:
Required Ports
| Port | Direction | Purpose |
|---|---|---|
| 33211 | Inbound | Sidecar gRPC (mump2p tracer; must be exposed) |
| 33212 | Inbound | libp2p agent – CL clients connect here |
| 43213 | Outbound | mump2p agent – gateway connects to Optimum network |
| 48123 | Inbound | Telemetry / Prometheus endpoint |
Docker
bash
docker run -p 33211:33211 -p 33212:33212 -p 43213:43213 -p 48123:48123 \
--name optimum-gateway \
getoptimum/gateway:v0.0.1-rc11Verification
bash
# Check listening ports (Linux)
netstat -tlnp | grep -E "(33211|33212|43213|48123)"
# Check listening ports (macOS)
netstat -an | grep -E "(33211|33212|43213|48123)"Test telemetry:
bash
curl http://localhost:48123/api/v1/version
