RouterOS 更新vlan46网络(dhcp-client)IP在Cloudflare解析的脚本

分享一下根据网上+自己小改 适用于RouterOS 更新vlan46网络IP在Cloudflare解析的脚本(好拗口,语文不好),也就是vlan46的DDNS脚本

Update:2023.09.15 由于广东电信新上线13.0.0.0/8网段,先简单魔改一下

{
   :local count [/ip route print count-only where comment="ct-tr069-route"]
   :if ($bound=1) do={
       :if ($count = 0) do={
            /ip route add gateway=$"gateway-address" comment="ct-tr069-route" dst-address=10.0.0.0/7 distance=10
            /ip route add gateway=$"gateway-address" comment="ct-tr069-route-13" dst-address=13.0.0.0/8 distance=10
        } else={
           :if ($count = 1) do={
               :local test [/ip route find where comment="ct-tr069-route"]
               :if ([/ip route get $test gateway]!= $"gateway-address") do={
                    /ip route set $test gateway=$"gateway-address"
                }
            } else={
               :error "Multiple routes found"
            }
        }
        /tool fetch mode=https http-method=put url="https://api.cloudflare.com/client/v4/zones/****你的zone ID***/dns_records/****你的记录ID****" http-header-field="content-type:application/json,X-Auth-Email:****cf的邮箱****,X-Auth-Key:****cf的key****" http-data="{\"type\":\"A\",\"name\":\"****域名****\",\"content\":\"$"lease-address"\",\"ttl\":120,\"proxied\":false}" output=none
    } else={
        /ip route remove [find comment="ct-tr069-route"]
        /ip route remove [find comment="ct-tr069-route-13"]
    }
}

食用位置: 食用位置

解释一下原理: 进来先找一下有多少条记录的comment也就是备注是“ct-tr069-route”的,ros貌似没有太好的办法去固定着id,路由有变动就会改id,很烦,貌似通过comment去找最好了 如果是分配到地址的状态,则增加一条10.0.0.0/7路由到tr069的网关上,据观察,电信的这个网从10.0.0.0-11.255.255.255都会分配到,如果不加到/7很可能访问不到别人。。 电信分给你的ip,是/21的网段,所以每次gateway都会变,要通过$”gateway-address”获取 电信分配的IP 然后加完路由之后,去通过cf的api更新一下地址,不在详细赘述了,要您自己改下cf api的参数,你问我怎么改?Cloudflare API v4 Documentation

最后,如果执行的时候,如果不是bound状态的,就把这个路由删掉

欢迎在我的github page的issue区探讨一下更好的实现方式 https://github.com/FsHtroy/FsHtroy.github.io/issues

2021.01.27(Update:2023.09.15)

最近的文章

RouterOS v7更新ipv6在Cloudflare解析的脚本

分享一下适用于RouterOS v7更新ipv6在Cloudflare解析的脚本目前做得很戳,由于RouterOS v7上游更新ip后不会删掉老ip,目前采取关闭接口重新打开的方式,将导致网络断开,恢复时间取决于重新通过SLAAC拿到地址的时间。TODO🐦:记录ip到本地,后续先确定老地址id,直接删除老地址。脚本1(接口关闭脚本)::local v6addrCount [/ipv6/address print count-only where interface=接口名称 and glo...…

继续阅读
更早的文章

河童网 佛山网络情况一览

先PO一下目前乱糟糟全屋线路接入点,我爸想着我比较喜欢折腾,装修的时候把所有的线路都拉到了我的房间,包括网线、电视线。然而并没有给我留下电源插座(x),所以十分尴尬的是,电源插座是我跟我爸后来才钉在墙上的。。来说一下设备:一台BugTik RB4011iGS+一台BugTik CSS326-24G-2S+一台Huawei MA5675M一台Huawei MA5672-G2P8两台Gcable的“网关”,就是同轴猫+点播服务器啦..后续改造计划:买个像样点的柜子通通塞进去,接上理线架,接自己...…

继续阅读