Submitted by 熊茂祥 on 2016, June 11, 8:50 AM
项目名称:DDNS系统
项目目的:让动态IP绑定到本站提供的顶级域名
项目已实现功能:
1.允许用户自注册本DDNS系统的帐号密码。
2.允许用户自助修改密码。
3.允许用户自行(添加/删除)自己需要的二级域名。(目前挂接在joinros.com主域名下。)
4.允许用户使用wget或者其他脚本更新自己的二级域名。
注册地址:http://www.cat-home.org/ddns/reg.html
用户中心:http://www.cat-home.org/ddns/login.html
更新时间:2016/06/11
更新说明:找到同子域名可能会添加2次记录的BUG。(当提交子域名包含某些字符时会产生。)已经修复。更新脚本支持https,在6X版本的情况下可以使用,使用https提交更加安全。
更新时间:2015/07/07
更新说明:添加一个ROS-3X的DDNS脚本,方便ROS-3X用户使用。在3.24版本上测试通过。
ROS5X-6X脚本(10-15分钟执行一次)
- #DDNS本站帐号
- :global ddnsuser "用户名"
- #DDNS本站密码
- :global ddnspass "密码"
- #ROS系统版本(5X,6X)
- :global rver "5X"
- #DDNS域名(本站添加的子域名)
- :global zhost "hello"
- #以下不需要修改
- :if (rver = "5X") do={
- /tool fetch url=("http://www.cat-home.org/ddns/goddns.php\?user=$ddnsuser&passwd=$ddnspass&zym=$zhost") mode=http keep-result=no
- } else={
- /tool fetch url=("https://cat-home.org/ddns/goddns.php\?user=$ddnsuser&passwd=$ddnspass&zym=$zhost") keep-result=no
- }
» 阅读全文
Tags: 域名, ddns, ros, 更新, 脚本
ROS | 评论:0
| 阅读:42488
Submitted by 熊茂祥 on 2015, June 1, 5:55 PM
大家都知道ROS原厂硬件接口名都喜欢带“-master”,“-slave”,但并不是所有人都喜欢这样。所以我写了个脚本,去掉网口名后面那些看着很不爽的字符。
ROS脚本
- :foreach dn in=[/interface ethernet find name~"-"] do={
- :global dnname [/interface ethernet get $dn name]
- :global dnnamen [:pick $dnname 0 [:find $dnname "-"]]
- /interface ethernet set $dn name=$dnnamen}
» 阅读全文
Tags: ros, 脚本, 网卡名, interface, 接口名
ROS | 评论:0
| 阅读:28115
Submitted by 熊茂祥 on 2015, May 14, 11:48 AM
ROS脚本
- #DDNS Token-ID
- :global tid "10002"
- #DDNS Token
- :global tsn "85c4cece0ced14dba4837d13c2cab0e0"
- #DDNS域名
- :global rhost "域名(例如www.cat-home.org)"
- #以下不需要修改
- :global host [:pick $rhost ([:find $rhost "."]+1) [:len $rhost]]
- :global zhost [:pick $rhost 0 [:find $rhost "."]]
- /tool fetch url=("http://www.cat-home.org/dnspod/index.php\?tid=$tid&tsn=$tsn&ym=$host&zym=$zhost") mode=http keep-result=no
DNSPOD Token申请地址
https://support.dnspod.cn/Kb/showarticle/tsid/227/
» 阅读全文
Tags: dnspod, ddns, 脚本, 多线, adsl
ROS | 评论:7
| 阅读:35427
Submitted by 熊茂祥 on 2015, May 7, 12:30 PM
ROS脚本(无需修改任何内容,自适应兼容。建议30秒以上运行一次)
- :global sjc 0
- :global adslnumjc 0
- :global oldadjc
- :foreach pallc in=[/int pppoe-client find disabled=no] do={
- :set adslnumjc ($adslnumjc+1)
- :foreach ujc in=([/int pppoe-client get $pallc running]=yes) do={
- :if ($ujc=true) do={
- :set sjc (sjc+1)}}}
- :if ((!($oldadjc = $sjc)) = true) do={
- :log warning ("当前" . $sjc . "/" . $adslnumjc . "条拨号线路工作正常。")
- }
不会用自己面壁,无需多说...
» 阅读全文
Tags: ros, 脚本, pppoe, 拨号, 日志
ROS | 评论:0
| 阅读:34263
Submitted by 熊茂祥 on 2014, September 2, 12:58 PM
ROS脚本
- #DDNS帐号
- :global user "用户名"
- #DDNS密码
- :global pass "密码"
- #DDNS域名
- :global rhost "域名(例如www.cat-home.org)"
- #以下不需要修改
- :global host [:pick $rhost ([:find $rhost "."]+1) [:len $rhost]]
- :global zhost [:pick $rhost 0 [:find $rhost "."]]
- /tool fetch url=("http://www.cat-home.org/dnspod/index.php\?user=$user&passwd=$pass&ym=$host&zym=$zhost") mode=http keep-result=no
- }
懒得说明,不会用自己面壁去。
» 阅读全文
Tags: dnspod, ddns, 脚本, 多线, adsl
ROS | 评论:1
| 阅读:46018