Frp Tunneling: Server and Client Configuration
Frp (fast reverse proxy) is an open-source tunneling tool: a server with a public IP runs frps, machines behind NAT run frpc, and the two keep a persistent connection. Traffic hitting ports on the public server is forwarded through that connection to internal services. Typical use case: exposing a web service or SSH on your home machine to the outside world. Configuration files use TOML (frps.toml / frpc.toml; the INI format is deprecated since v0.52+). ...