Loading... # ⚠警告 <span style='color:#FF1314'>此文站为技术讨论和经验分享,旨在搭建内网专用网络,技术无罪,切勿用于非法用途,否则后果自负!</span> # 引言 因为电脑太重,不想走到哪儿都背着电脑,但是手机屏幕又小,平板刚刚合适,但是自从Android12开始,就停止了PPTP和L2PT协议的VPN,然而公司的VPN就是这种协议的,所以连接到公司网络就更加困难了,网上找了好久也没找到相应的客户端,所以想着另辟蹊径,想到了这种办法。 # 前提 - 内网机器 - 公网IP # 原理图 ![image.png](https://www.zunmx.top/usr/uploads/2024/06/3907401199.png) # 实现 ## 公网服务器操作 [frp下载官网](https://gofrp.org/zh-cn/) 首先在公网服务器上安装FRP服务端,并且配置好配置文件,这里需要考虑虚拟机的操作系统 这里给一个frp配置文件的简单示例 ```properties [common] bind\_port = 7981 log\_level = trace log\_file = ./frps.log authentication\_method = token token = frpfrpfrp.123 ``` 配置好后,运行它 ## 虚拟机操作 这里我习惯用v2ray,下载v2后,新建config.json,这里我给一个配置示例 ```json { "log": { "access": "access.log", "error": "error.log", "loglevel": "info" }, "inbounds": [ { "port": 8087, "protocol": "vmess", "settings": { "clients": [ { "id": "d167b28a-74e1-4a95-a129-e54e2e563ec9", "alterId": 0 } ] } } ], "outbounds": [ { "protocol": "freedom", "settings": {} } ] } ``` 配置好后,通过`v2ray.exe run`命令运行v2服务。 在这台机器上安装frp客户端,注意,这里的配置需要和服务端的配置相对应 配置实例 ```properties [common] server\_addr = 公网服务器IP server\_port = 7981 token = frpfrpfrp.123 authentication\_method = token log\_level = debug log\_file = ./frpc.log tlsonly = true [8088] type = tcp local\_ip = 127.0.0.1 local\_port = 8087 remote\_port = 8088 ``` ℹ:8087是v2服务的端口,在上面的配置文件实例中有写,而8088是公网服务器要启动的端口。 # 测试连接 按照配置文件配置好 ![image.png](https://www.zunmx.top/usr/uploads/2024/06/326906885.png) 启动全局代理,试试怎么样? ![image.png](https://www.zunmx.top/usr/uploads/2024/06/3164428517.png) 安卓设备推荐v2rayNG ![image.png](https://www.zunmx.top/usr/uploads/2024/06/654733506.png) # 相似文章 <div class="preview"> <div class="post-inser post box-shadow-wrap-normal"> <a href="https://www.zunmx.top/archives/2012/" target="_blank" class="post_inser_a no-external-link no-underline-link"> <div class="inner-image bg" style="background-image: url(https://www.zunmx.top/usr/uploads/2023/08/1040795882.png);background-size: cover;"></div> <div class="inner-content" > <p class="inser-title">构建私密的网络传输环境</p> <div class="inster-summary text-muted"> 引言因公司禁止使用微信和一些音乐播放器,故想出这个方法来突破限制,并且也可以通过这个端口来对服务器进行运维。准备阶... </div> </div> </a> <!-- .inner-content #####--> </div> <!-- .post-inser ####--> </div> © 允许规范转载 打赏 赞赏作者 支付宝微信 赞 如果觉得我的文章对你有用,请随意赞赏