利用家宽做NAT 免不了可能会断线

ddns有大佬已经写了直接拿来用 https://github.com/jeessy2/ddns-go/

断线重拨

@echo off

:start
ping 114.114.114.114 -n 2 |find “TTL” > nul

if errorlevel 1 (
echo “离线”
rasdial 宽带连接 宽带账号 密码
) else (
echo “在线”
TIMEOUT 60
)
goto:start

image.png