在cubieborad安装zblog并实现伪静态化服务器教程-6.自动更新域名到dnspod实现固定IP
六、自动更新域名到dnspod
1、先安装curl支持库
ubuntu 安装 curl .
#sudo apt-get install curl libcurl3 libcurl3-dev php5-curl
2、https://gist.github.com/chuangbo/833369具体文法pypod.py
特别注意原版文件不得在windows下修改。。注意格式。
3、分别获取域名 ID 和解析 ID 的方法(Curl):
view source
1 curl curl -k https://dnsapi.cn/Domain.List -d "login_email=xxx&login_password=xxx"
2 curl -k https://dnsapi.cn/Record.List -d "login_email=xxx&login_password=xxx&domain_id=xxx"
pypod.py
编辑这个文件,可以使用 vi 或 gedit 都可以,修改如下图的内容:
附代码:
#!/usr/bin/env python #-*- coding:utf-8 -*- import httplib, urllib import socket import time params = dict( login_email="email", # replace with your email login_password="password", # replace with your password format="json", domain_id=100, # replace with your domain_od, can get it by API Domain.List record_id=100, # replace with your record_id, can get it by API Record.List sub_domain="www", # replace with your sub_domain record_line="默认", ) current_ip = None def ddns(ip): params.update(dict(value=ip)) headers = {"Content-type": "application/x-www-form-urlencoded", "Accept": "text/json"} conn = httplib.HTTPSConnection("dnsapi.cn") conn.request("POST", "/Record.Ddns", urllib.urlencode(params), headers) response = conn.getresponse() print response.status, response.reason data = response.read() print data conn.close() return response.status == 200 def getip(): sock = socket.create_connection(('ns1.dnspod.net', 6666)) ip = sock.recv(16) sock.close() return ip if __name__ == '__main__': while True: try: ip = getip() print ip if current_ip != ip: if ddns(ip): current_ip = ip except Exception, e: print e pass time.sleep(30)
修改好的记得保存,然后就可以开始运行这个 python 脚本了,在终端输入:
view source
1 chmod +x pypod.py && ./pypod.py
如果你可以看到有 Successful 的句子就说明你运行成功了(如果失败检查你文件中的帐密):
然后过一会可以去 Dnspod 那里看看你那个记录的解析有没有变化(我图中用了 NS 记录,但是话说不生效。你可以事先随意解析一个 A 记录的子域名、然后重复操作即可!)
扩展:添加开机启动任务
你可以在 /etc/rc.local 的最后一行添加如下语句:
view source
1 #
2 # 运行 Ddns 动态解析
3 /usr/bin/python /root/pypod.py
也可以直接输入如下语句使用 gedit 打开文件修改(一样的):
view source
gedit /etc/rc.local
本文 陈佐博客 原创,转载保留链接!网址:http://chenzuo.cn/post/33.html
1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。