https://meshcn.net/how-to-connect-to-messhost-third-party-china-mqtt-server/
15
2025
09
mqtt 国内设置
作者:kingylh | 分类:网址收藏 | 浏览:5 | 评论:0
12
2025
09
04
2025
09
meshtastic地图
作者:kingylh | 分类:网址收藏 | 浏览:17 | 评论:0
18
2025
08
18
2025
08
07
2025
08
07
2025
08
28
2025
07
爱快防火墙透明桥模式网络连接
作者:kingylh | 分类:网址收藏 | 浏览:36 | 评论:0
18
2025
07
ssl证书自动部署
作者:kingylh | 分类:网址收藏 | 浏览:46 | 评论:0
17
2025
07
公司vpn拨号后指定网段走公司vpn脚本
一、添加路由
@echo off :: 1. 管理员权限检查 >nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system" if %errorlevel% neq 0 (echo 请以管理员身份运行! & exit /b 1) :: 2. 设置固定VPN网关 set vpn_gateway=192.168.170.1 :: 3. 添加公司网段路由(192.168.88.0/24) route add 192.168.88.0 mask 255.255.255.0 %vpn_gateway% -p >nul if %errorlevel% equ 0 ( echo ✓ 路由添加成功:192.168.88.0/24 -> %vpn_gateway% ) else ( echo ✗ 路由添加失败!错误码: %errorlevel% ) :: 4. 验证路由 echo; & echo 路由表检查: route print | findstr 192.168.88.0 pause
作者:kingylh | 分类:网址收藏 | 浏览:56 | 评论:0