最近一段时间我的腾讯云买的域名到期了,正好我也买了一个阿里云的服务器,所以想着域名也一起在阿里云买得了,于是乎我就像之前一样买好域名后开始配置 DNS 解析,本来想着也没啥区别,但是配着配着我才发现腾讯云是提供免费的 ddns 解析服务的,而阿里云没有,只提供了 实现动态域名解析DDNS Open Api ,没办法,家里的一些服务器和 nas 需要远程访问的话没有域名很麻烦,公网ip又会动态变化,于是想还是使用 Open Api
自己动手搞定吧。
1、创建 AccessKey 首先使用 Open Api 需要登录阿里云控制台,在右上角头像悬浮展开会看到 AccessKey 管理的
的选项,点进去创建 AccessKey 即可,创建完成后保存下AccessKeyId
和 AccessKeySecret
下面使用 Open Api
会用到;
2、环境安装 使用阿里云Open Api
需要对应的编程环境,作为前端开发人员,我这里直接选用nodejs
最为编程环境,大家对应选择自己熟悉的环境即可; 环境安装完毕,就是看下需要哪些参数了,更新动态域名解析记录需要调用两个Open Api
:
详细参数如下,具体使用可以查看示例代码就行;
accessKeyId: 您的AccessKey ID
accessKeySecret: 您的AccessKey Secret
regionId: 您的可用区ID
DescribeDomainRecords
domainName: 域名名称
RRKeyWord: 主机记录的关键字,按照“%RRKeyWord%”模式搜索,不区分大小写)
currentHostIP: 当前主机公网IP
UpdateDomainRecord
RR: 主机记录。如果要解析@.exmaple.com,主机记录要填写”@”,而不是空。
recordId: 解析记录的ID
⚠️注意: 1、这里可以配合着下面的两种方式查看自己的公网 ip
1 2 3 curl ifconfig.me curl ipinfo.io/json
2、区域可查看 阿里云地域和可用区
3、封装 docker 服务 由于官方提供的示例只是个简单的命令行工具,每次更新动态域名解析记录需要自己手动完成,而我需要程序自动就帮我定时更新,所以我想到一个简单的办法就是把命令行改成一个定时执行的脚本封装成 docker 镜像,然后运行在我家里的一个虚拟机上就完成了,具体代码如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 import Dns , * as $Dns from "@alicloud/alidns20150109" ;import Util from "@alicloud/tea-util" ;import Env from "@alicloud/darabonba-env" ;import OpenApi , * as $OpenApi from "@alicloud/openapi-client" ;import Console from "@alicloud/tea-console" ;import * as $tea from "@alicloud/tea-typescript" ;import schedule from "node-schedule" ;const IP_INFO_URL = "https://ipinfo.io/json" ;export default class Client { static Initialization (regionId : string ): Dns { let config = new $OpenApi.Config ({}); config.accessKeyId = Env .getEnv ("ALICLOUD_ACCESS_KEY_ID" ); config.accessKeySecret = Env .getEnv ("ALICLOUD_ACCESS_KEY_SECRET" ); config.regionId = regionId; return new Dns (config); } static async DescribeDomainRecords ( client : Dns , domainName : string , RR : string , recordType : string ): Promise <$Dns.DescribeDomainRecordsResponse > { let req = new $Dns.DescribeDomainRecordsRequest ({}); req.domainName = domainName; req.RRKeyWord = RR ; req.type = recordType; try { let resp = await client.describeDomainRecords (req); Console .log ( "-------------------获取主域名的所有解析记录列表--------------------" ); Console .log (Util .toJSONString ($tea.toMap (resp))); return resp; } catch (error) { Console .log (error.message ); } return null ; } static async UpdateDomainRecord ( client : Dns , req : $Dns.UpdateDomainRecordRequest ): Promise <void > { try { let resp = await client.updateDomainRecord (req); Console .log ("-------------------修改解析记录--------------------" ); Console .log (Util .toJSONString ($tea.toMap (resp))); } catch (error) { Console .log (error.message ); } } static async main (): Promise <void > { const domainName = Env .getEnv ("DOMAIN_NAME" ); const RR = Env .getEnv ("RR" ); const regionid = Env .getEnv ("REGION_ID" ) || "cn-hangzhou" ; const recordType = Env .getEnv ("RECORD_TYPE" ) || "A" ; let client = Client .Initialization (regionid); let resp = await Client .DescribeDomainRecords ( client, domainName, RR , recordType ); if ( Util .isUnset ($tea.toMap (resp)) || Util .isUnset ($tea.toMap (resp.body .domainRecords .record [0 ])) ) { Console .log ("错误参数!" ); return ; } let record = resp.body .domainRecords .record [0 ]; let recordId = record.recordId ; let recordsValue = record.value ; try { const ipinfo : any = await fetch (IP_INFO_URL ).then ((res ) => res.json ()); const currentHostIP = ipinfo.ip ; Console .log ( `-------------------当前主机公网IP为:${currentHostIP} --------------------` ); if (!Util .equalString (currentHostIP, recordsValue)) { let req = new $Dns.UpdateDomainRecordRequest ({}); req.RR = RR ; req.recordId = recordId; req.value = currentHostIP; req.type = recordType; await Client .UpdateDomainRecord (client, req); } } catch (error) { Console .log (error.message ); } } } Client .main ();schedule.scheduleJob ("*/30 * * * *" , function ( ) { Console .log ( "------------------- 阿里云 ddns 解析程序执行!--------------------" ); Client .main (); });
最后通过Dockerfile
构建成 docker 镜像于行即可
1 2 3 4 5 6 7 8 9 10 11 12 13 14 FROM --platform=linux/amd64 node:20 WORKDIR /usr/src/app COPY package*.json ./ COPY ./dist ./dist RUN npm i CMD [ "node" ,"./dist/index.js" ]
docker 镜像构建
1 2 docker build -t aliyun_ddns_updater:v1 .
4、docker 运行 docker 镜像的主要运行参数就是 Open Api
所需的几个参数,全部是环境变量
1 2 3 4 5 6 7 8 9 10 11 12 # 创建容器 docker run -it --name aliyun_ddns_updater aliyun_ddns_updater:v1 # 启动 docker 需要配置环境变量 ALICLOUD_ACCESS_KEY_ID # 阿里云 accessKeyId ALICLOUD_ACCESS_KEY_SECRET # 阿里云 accessKeySecret DOMAIN_NAME # 修改的主域名 RR # 修改的子域名 REGION_ID # 阿里云区域 默认 cn-hangzhou RECORD_TYPE # 域名记录类型 默认 A
GitHub 仓库地址:https://github.com/ChrisSong1994/aliyun_ddns_updater docker 地址: https://hub.docker.com/repository/docker/chrissong1994/aliyun_ddns_updater/general