Which services can I tunnel (SSH, RDP, web, databases)?

Anything that speaks TCP. An LRO tunnel is a raw TCP pipe — it carries the bytes of whatever protocol you put through it without looking inside, so the choice of application is entirely yours.

It’s a raw TCP pipe

The relay reads bytes from one side and writes them unchanged to the other, in both directions. It does not parse, inspect or modify the protocol on top. That is why the application on each end behaves exactly as if it had connected directly — the same handshakes, the same authentication, the same behaviour.

Common things people tunnel

The tunnel transports TCP. Purely UDP-based protocols (some real-time voice/video or game transports) are not carried directly — but most administrative access (SSH, RDP, web, databases) is TCP and works as-is.

Encryption is independent of the protocol

Whatever you tunnel, the traffic is end-to-end encrypted between the agents, on top of whatever encryption the protocol itself uses. A plain HTTP admin page, for example, still crosses the relay as ciphertext.

Tunnel SSH, RDP, a web panel or a database to a machine behind NAT.

Create an account →