下载地址,文档地址
Server配置
frps.ini配置
[common]
bind_port = 7000 # 服务端监听端口,默认7000
token = password # 鉴权使用的 token 值,客户端需要设置一样的值才能鉴权通过
dashboard_port = 7500 # Web 界面,访问 http://服务器IP:7500
dashboard_user = username # HTTP BasicAuth 用户名
dashboard_pwd = password # HTTP BasicAuth 密码
启动命令
nohup ./frps -c ./frps.ini >frp.log 2>&1 &
Client配置
frpc.ini配置
[common]
server_addr = xx.xx.xx.xx # 连接服务端的地址
server_port = 7000 # 连接服务端的端口
token = password # 鉴权使用的 token 值,需要和服务端设置一样的值才能鉴权通过
[app_name]
type = tcp
local_ip = 127.0.0.1 # 连接服务端时所绑定的本地 IP
local_port = 8000 # 连接服务端时所绑定的本地端口
remote_port = 7531 # 服务的外部访问端口,将 local_port 映射到外网
启动命令
./frpc -c frpc.ini