Self-Hosted Mesh Tunneling | Muti Metroo

1 min read Original article ↗

Mole on escalator

Use Cases

Secure Remote Access

Access internal resources from anywhere without traditional VPN infrastructure. End-to-end encryption ensures transit nodes never see your traffic.

Multi-Site Connectivity

Connect data centers, offices, and cloud regions through a self-healing mesh. Automatic route propagation handles topology changes.

NAT and Network Traversal

Connect across network boundaries using HTTP/2 or WebSocket transports compatible with corporate proxy infrastructure.

IoT and Edge Networking

Connect distributed IoT devices and edge nodes through a lightweight mesh. Single binary with no dependencies runs anywhere - from Raspberry Pi to cloud VMs.

Quick Example

1. Setup and Run

# Interactive setup wizard
./muti-metroo setup

# Run with config
./muti-metroo run -c config.yaml

2. Connect via SOCKS5

# Use curl through the mesh
curl -x socks5://localhost:1080 https://internal.example.com

# SSH through the mesh
ssh -o ProxyCommand='nc -x localhost:1080 %h %p' user@host