FRP内网穿透教程

准备环境

  • 本地WEB服务(比如jupyter notebook)
  • VPS(最好使用国外VPS,域名无需备案)
  • 域名

server端配置

在VPS上先部署frp

wget https://github.com/fatedier/frp/releases/download/v0.25.3/frp_0.25.3_linux_amd64.tar.gz
tar -zxvf frp_0.25.3_linux_amd64.tar.gz
cd frp_0.25.3_linux_amd64

编辑frps.ini文件,如下所示

[common]
bind_port=7000
vhost_http_port=443
dashboard_port=7500
dashboard_user=admin
dashboard_pwd=admin

**以上的端口均需要开启防火墙 **
**其中http端口则依据教程操作 **
开启方法: ./frps -c ./frps.ini

cilent端配置

cilent端若是linux,则和上述类似,若是windows则先下载对应的win版,将其解压,并修改frpc.ini文件如下:

[common]
server_addr =your server address
server_port = 7000
[http]
type = http
local_ip = 127.0.0.1
local_port = 5000
custom_domains=your domain ```

开启则用命令```frpc.exe -c frpc.ini```

打开```domain:443```即可打开对应网页

你可能感兴趣的:(FRP内网穿透教程)