Skip to content

Network Requirements

Before starting the Optimum Gateway, ensure your firewall allows these ports:

Required Ports

PortDirectionPurpose
33211InboundSidecar gRPC (mump2p tracer; must be exposed)
33212Inboundlibp2p agent – CL clients connect here
43213Outboundmump2p agent – gateway connects to Optimum network
48123InboundTelemetry / 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-rc11

Verification

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