一、下载frp
https://github.com/fatedier/frp/releases
二、解压配置
frps为服务器端配置,即具有外网的服务器,打开frps.ini进行配置(默认端口为7000,可自主进行修改)
bind_port = 7000
frpc为客户端配置,即内网服务器,打开frpc.ini进行配置
[common]
server_addr = 外网服务器IP
server_port = 外网服务器frp端口,即外网服务器frps.ini配置中bind_port的值
[web]
type = tcp
local_ip = 127.0.0.1
local_port = 80
remote_port = 8080
local_port即为需要指向跳转的端口,remote_port即为外网IP访问端口(http://外网IP:remote_port指向内网服务器local_port)
三、启动脚本
启动frps:nohup $(pwd)/frps -c $(pwd)/frps.ini > /dev/null &
启动frpc:nohup $(pwd)/frpc -c $(pwd)/frpc.ini > /dev/null &