Openwrt Attitude Adjustment脚本更新DDNS IP 以Oray花生壳为例子

网上都有,但是backfire以后的openwrt弃用了原来的命令了,自己探索修改了一下,希望大家少走弯路,另外oray的更新频率是30分钟,不能刷新频率大于这个。

在 /etc/hotplug.d/iface/ 下建立一个文件 25-oray  在文件内写入如下代码:

#!/bin/sh -
. /lib/functions/network.sh
USER="UserName"
PASS="Password"
DOMAIN="domin.vicp.net"
URL="http://${USER}:${PASS}@ddns.oray.com:80/ph/update?hostname=${DOMAIN}"

if [ -f /tmp/ddns ]; then
   network_get_ipaddr current_ip wan
   req=`cat /tmp/ddns| grep "${current_ip}"`
   if [ ! -z "${req}" ]; then
       old_ip=`echo ${req}| awk '{ print $2}'`
       if [ "${old_ip}" = "${current_ip}" ]; then
           exit
       fi
   fi
fi

wget -q -O /tmp/ddns -q ${URL}


然后退出 并且赋予此文件可执行权限 chmod a+x /etc/hotplug.d/iface/25-oray

再编辑 vi etc/crontabs/root 文档 添加
*/31 * * * * /etc/hotplug.d/iface/25-oray start

或者在luci界面的system --- scheduled Tasks中添加

然后就行了。其他的ddns服务器可以参考一下。
PS: 参考文献:1.  http://hi.baidu.com/lqy0909/item/33b7fedffc6ab9f792a97464
                       2. http://www.right.com.cn/forum/thread-113726-1-1.html


你可能感兴趣的:(网上,花生,Attitude)