利用飞儿云PHP框架自带的DNSPOD库做DDNS动态域名解析

Posted 项希盛

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了利用飞儿云PHP框架自带的DNSPOD库做DDNS动态域名解析相关的知识,希望对你有一定的参考价值。

取得Firadiophp

git clone https://github.com/firadio/firadiophp.git

 

保存到/config/dnspod1.php

<?php

return array(
    ‘class‘ => ‘FiradioPHPApiDnspod‘,
    ‘URL‘ => ‘https://dnsapi.cn‘,
    ‘token‘ => array(
        ‘created‘ => ‘2017-06-27 01:46:01‘,
        ‘name‘ => ‘FiradioPHP‘,
        ‘id‘ => 123456789,
        ‘key‘ => ‘xxxxxxxxxxxxxxxxxxxxx‘,
    ),
);

 

 

 

保存到index.php

<?php

use FiradioPHPF;
$key = ‘xxxxxxxxxxxxxxxxxxxxxxx‘;
if (!isset($_GET[‘key‘]) || $_GET[‘key‘] !== $key) {
    echo "error key
";
    exit;
}
$info = array();
$info[‘ip_addr‘] = $_SERVER[‘REMOTE_ADDR‘];
$info[‘domain‘] = isset($_GET[‘domain‘]) ? $_GET[‘domain‘] : ‘‘;
$info[‘interface‘] = isset($_GET[‘interface‘]) ? $_GET[‘interface‘] : ‘‘;
require __DIR__ . ‘/FiradioPHP/F.php‘;
F::init(__DIR__ . DS . ‘config‘);
$oDnspod1 = F::$oConfig->getInstance(‘dnspod1‘);
$aSets = array();
$oSet = array();
$oSet[‘type‘] = ‘A‘;
$oSet[‘value‘] = $info[‘ip_addr‘];
$oSet[‘status‘] = ‘enable‘;
$oSet[‘remark‘] = ‘interface=‘ . $info[‘interface‘];
$aSets[] = $oSet;
$oDnspod1->setRecordIPs(‘firadio.net‘, ‘dx‘, $aSets);
$oDnspod1->setRecordIPs(‘firadio.net‘, ‘vps‘, $aSets);

 

 

然后crontab -e加入

* * * * * curl ‘http://xxx.xxx.xxx.xxx:12345/firadio/dnspod.php?key=xxxxxxxxxxxxx&domain=vps.firadio.net&interface=adsl1‘ >> /tmp/dnspod.log

 

以上是关于利用飞儿云PHP框架自带的DNSPOD库做DDNS动态域名解析的主要内容,如果未能解决你的问题,请参考以下文章

python+阿里云实现动态域名解析(DDNS)

python+阿里云实现动态域名解析(DDNS)

爱快动态域名设置完怎样访问路由器

Shell 更新DNSPOD 域名,做动态DNS

在飞儿云主机里使用酷Q时遇到相关问题的解决办法

Cloudflare配置动态dns(ddns)