Files
nexus/wiki/concepts/FRP.md
2026-04-14 16:02:50 +08:00

1.1 KiB
Raw Blame History

title, type, tags, last_updated
title type tags last_updated
FRP concept
frp
内网穿透
reverse-proxy
2026-04-13

Definition

FRPFast Reverse Proxy是一款高性能内网穿透工具支持TCP/UDP/HTTP/HTTPS协议。

组件

组件 说明 运行位置
frps 服务端 VPS
frpc 客户端 内网机器

核心配置

frps.ini (VPS)

[common]
bind_addr = 0.0.0.0
bind_port = 7000
dashboard_addr = 0.0.0.0
dashboard_port = 7500
token = your_token_here

frpc.toml (内网客户端)

[common]
server_addr = VPS_IP
server_port = 7000
token = your_token_here

[[proxies]]
name = "ssh"
type = "tcp"
localIP = "127.0.0.1"
localPort = 22
remotePort = 60022

版本支持

架构 版本 安装路径
macOS ARM64 0.65.0 /opt/frp/frp_0.65.0_darwin_arm64
Linux amd64 0.65.0 /opt/frp/frp_0.65.0_linux_amd64

相关文档