frp的下载
GitHub的地址:https://github.com/fatedier/frp
下载地址:wget https://github.com/fatedier/frp/releases/download/v0.34.1/frp_0.34.1_linux_amd64.tar.gz
下载自己需要的版本,把下载的压缩包分别在服务端和客服端解压。
frp配置
下面是配置一个web项目的样例:
服务端配置frps.ini文件:
[common]
bind_port = 7000
vhost_http_port = 9090
客户端配置frpc.ini文件:
[common]
server_addr = 服务端IP/域名
server_port = 7000
[web]
type = http
local_port = 9528
custom_domains = 服务端IP/域名
这里的意思是把客户机的9528端口映射到服务端的9090端口,我们访问服务端IP:9090既可以访问客户端的WEB服务。
配置多个端口
frps.ini只需要配置一个连接的端口即可
[common]
bind_port = 7000
frpc.ini配置多个web,但是注意type使用tcp
[common]
server_addr = 服务端IP/域名
server_port = 7000
[web1]
type = tcp
local_port = 9528
custom_domains = 服务端IP/域名
remote_port = 9090
[web2]
type = tcp
local_port = 8079
custom_domains = 服务端IP/域名
remote_port = 8079