Frp使用

文章目录

  • frp下载地址
    • server端
      • 启动
        • linux
        • win
    • Client端
      • 启动
        • linux
        • win

frp下载地址

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

根据系统下载相应的版本

Frp使用_第1张图片

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

你可能感兴趣的:(frp,内网穿透)