frp内网穿透保姆级配置流程,让客户端电脑可以通过域名或者IP访问本地程序接口

下载地址:https://github.com/fatedier/frp/releases

配置说明

1、server_addr中的IP是个人云服器的IP
2、custom_domains是可以使用域名访问
3、adtech.test.link.???.com的域名解析ip是124.221.248.68,这样配置后相当于,adtech.test.link.???.com访问443端口或者8081端口时,就会被转发到客户端
4、frpc.ini是客户端配置文件,frps.ini是服务端配置文件

frp内网穿透保姆级配置流程,让客户端电脑可以通过域名或者IP访问本地程序接口_第1张图片

云服务Linux的frps.ini配置文件

[common]
bind_port = 7000
vhost_https_port = 443
vhost_http_port = 8081
dashboard_port = 7500

在这里插入图片描述
启动命令

nohup ./frps -c ./frps.ini > frps.log 2>&1 &

Linux的Shell脚本

#!bin/bash

nohup ./frps -c ./frps.ini > frps.log 2>&1 &

frp内网穿透保姆级配置流程,让客户端电脑可以通过域名或者IP访问本地程序接口_第2张图片

客户端Windows的frpc.ini配置文件

[common]
server_addr = 124.221.248.68
server_port = 7000

[ssh8088]
type = https
custom_domains = adtech.test.link.***.com
local_port = 443

[ssh2]
type = http
custom_domains = adtech.test.link.***.com
local_port = 8081

frp内网穿透保姆级配置流程,让客户端电脑可以通过域名或者IP访问本地程序接口_第3张图片

启动命令 frpc.exe -c frpc.ini

Windows的bat执行
frp内网穿透保姆级配置流程,让客户端电脑可以通过域名或者IP访问本地程序接口_第4张图片

配置成功运行后效果如下
电脑中安装了360这类杀毒软件的话,在关闭杀毒软件后在执行,不然可能会出现被清理掉执行文件的情况
frp内网穿透保姆级配置流程,让客户端电脑可以通过域名或者IP访问本地程序接口_第5张图片

你可能感兴趣的:(开发工具,网络协议,网络)