博文

目前显示的是标签为“openwrt wireguard”的博文

openwr旁路由 内网穿透cloudflareTunnel隧道完成 访问内网所有设备 openwr旁路由 內網穿透cloudflareTunnel隧道完成 訪問內網所有設備 Openwr bypass is completed by penetrating cloudflareTunnel through the intranet to access all devices on the intranet

B站视频: https://www.bilibili.com/video/BV1MG411R76u/ YouTube视频: https://youtu.be/Iy4ylJJ8iNU openwr旁路由 内网穿透cloudflareTunnel隧道完成 访问内网所有设备 openwr旁路由 內網穿透cloudflareTunnel隧道完成 訪問內網所有設備 Openwr bypass is completed by penetrating cloudflareTunnel through the intranet to access all devices on the intranet 00:48 esxi添加虚拟机 用于安装openwrt 用到的工具:esxi: https://d.wanuse.com/e openwrt安装 ISO PE镜像 : https://cowtransfer.com/s/cc8fa5e4c38d43 01:27 在esxi中安装openwrt 旁路由 openwrt旁路由固件地址: https://d.wanuse.com/openwrt 镜像写入工具 :diskimage.exe工具  https://cowtransfer.com/s/8f07ad4c0d1442 04:36 在openwrt创建 cloudflareTunnel隧道 首先需要登录cloudflare cloudflare zero trus(使用cloudflare zero trus需要信用卡验证 选择免费计划 完全免费的) 在openwrt终端输入命令,登录cloudflare 代码:  cloudflared tunnel login 输入登录命令后,出现 登录链接,复制连接 在已经登录cloudflare zero trust浏览器中打开 进入选择一个域名 点击授权 终端提示证书下载成功 目录/root/.cloudflared/cert.pem 使用命令创建隧道 代码:  cloudflared tunnel create 1234 提示创建成功 /root/.cloudflared/123-e363-41238-854c-234534514.json 13:06 运行隧道,迁移隧道,加入openwrt开机后台启动运行 开机...

修改openwrt 网络配置 建立wireguard 服务连接 适合旁路由openwrt22.03

图片
YouTube: https://youtu.be/gkmddGYEGM8 bilibili: GitHub : https://github.com/wandduse/openwrt_server openwrt旁路由和VPS固件下载地址:   https://d.wanuse.com/openwrt vps安装openwrt命令 bash -c "$(wget -O- https://d.wanuse.com/op)" 修改network网路配置 文件路径:etc/config/network option private_key :私钥 (推荐修改一下 自己使用) option listen_port '18889' :端口可以修改 config wireguard_123(是对端设置) option private_key:对端私钥 option public_key:对端公钥 (必须修改成 电脑或是手机 以及软路由的。) config interface '123' option proto 'wireguard' option private_key 'wPZ2RMlRCAR/nPDwGKEVX6laKASQzVHvISRkUnMHXXc=' option listen_port '18889' list addresses '192.168.11.1/24' config wireguard_123 list allowed_ips '192.168.11.0/24' option private_key '2LklEhkX2hkKTntlXPJHfr5RZFfz4+u9aUWMfHc6dFM=' option public_key 'gqmjfo3rmr7gaiYJrAw7lDooGOJTVZCpI8Be7KU/nE4=' 添加防火墙配置 文件路径:etc/config/firewall config zone option name 'lan' option input 'ACCEPT' option output 'ACC...