Frp使用

2023-12-25 14:33:03

frp下载地址

https://github.com/fatedier/frp/releases/tag/v0.53.2

根据系统下载相应的版本

在这里插入图片描述

server端

默认绑定7000端口,可编辑frps.toml文件修改端口。

bindPort = 7000

启动

linux
./frps -c frps.toml
win
# 注意:需要用cmd窗口运行,不能直接exe点击运行
frps.exe -c frps.toml

Client端

编辑frpc.toml文件

serverAddr = "xx.xx.xxx.xxx" # server端IP 
serverPort = 7000

[[proxies]]
name = "tcp1"
type = "tcp"
localIP = "qwe.sss.qqw.sas"
localPort = xxxx
remotePort = xxxx

[[proxies]]
name = "tcp2"
type = "tcp"
localIP = "qwe.sss.qqw.sas"
localPort = yyyy
remotePort = yyyy

启动

linux
./frpc -c frpc.toml
win
# 注意:需要用cmd窗口运行,不能直接exe点击运行
frpc.exe -c frpc.toml

文章来源:https://blog.csdn.net/baidu_35751704/article/details/135197606
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。