最近一直在围绕着我的小电脑在转,基本都是这方面的问题。在没有公网IP的情况下,这个问题就是我怎么才能通过域名访问到我家中的服务器。
有自己的云服务器(没有也行)、有域名、有一个独立ip (虽然可能会变)、家里有服务器或办公室(但能上网)。
通过域名访问到在内网服务器部署的项目。
我这边的场景是服务器通过wifi
连接路由器,路由器连接光猫,光猫是花钱找人破解做的桥接,这样基本全都是托管给了我的路由器来管理,同时在百度ip
可以得到一个ip地址
。
自己有几个域名,现在想在不通过穿透的情况下实现外网访问(当然穿透相对可能更简单些,但是需要依托云服务器,并受限于云服务器)
其实,这里还有一个很小的问题,但是强迫症受不了.. 我就是不想带端口号(因为联通、电信都屏蔽了 80 443 端口,无法直接进行这几个端口的转发,导致在通过ip 或 域名访问的时候都是带着端口的..哎,我就不想带--这个问题放在最后)
额,这个可以自己研究,当然有时间折腾还是自己研究比较好玩,不过据说可能会有风险,我是直接淘宝找的大神破解的,几十块钱直接搞定,中间一顿操作,我也没看懂。
这篇文章着重说的就是这个问题,监听并动态修改解析记录
,话不多说,直接上代码。
/**
* 域名动态解析
* 由于IP地址会经常变化,所以这里做一个定时器,每隔几分钟就做一次ip检查,如果发现不一致,则进行动态解析变更。
*/
const tencentcloud = require("tencentcloud-sdk-nodejs");
let axios = require('axios');
let dns = require('dns');
let config = require('./config');
let spwan = require('child_process').spawn;
const DnspodClient = tencentcloud.dnspod.v20210323.Client;
const clientConfig = {
credential: {
secretId: config.secretId,
secretKey: config.secretKey,
},
region: "",
profile: {
httpProfile: {
endpoint: "dnspod.tencentcloudapi.com",
},
},
};
const client = new DnspodClient(clientConfig);
const params = {};
/**
* 获取域名解析记录
* @param {String} name 域名
* @returns
*/
function getRecordList(name) {
return new Promise((r, j) => {
client.DescribeRecordList({
Domain: name
}).then(rs => {
r(rs.RecordList);
}, err => {
j(err);
})
})
}
function getIp(domain) {
return new Promise((r, j) => {
dns.lookup(domain, (err, ip, family) => {
if (err) j(err);
r(ip);
})
})
}
/**
* 修改解析记录
* @param {Object} rec 原有的数据
* @param {String} newip 新IP
*/
function modifyRecord(rec,domain,newip) {
return new Promise((r, j) => {
client.ModifyRecord({
Domain: domain,
RecordType: rec.Type,
RecordLine: rec.Line,
Value: newip,
RecordId: rec.RecordId,
SubDomain : rec.Name
}).then(rs => {
r(rs.RecordList);
}, err => {
j(err);
})
})
}
//测试
(async function () {
//检查当前IP与现有IP是否一致
let iprs = await axios.get('https://api.ipify.org/?format=json').then(rs => rs.data);
let ip = iprs.ip;//现有IP地址
//获取目标网站的地址信息,指定一个即可
let nowIp = await getIp(config.testDomain);
if (ip == nowIp) {
console.info(`${new Date()}: 当前IP无变化`);
process.exit(0);
}
let msg = `${new Date()} : 当前ip发生变更,原有IP : ${nowIp} ,新的IP : ${ip}`;
console.info(msg)
//钉钉通知我
//此处是我服务器有一个自己的工具notify,可以直接给我钉钉发消息,可以自行实现或删除
spwan('notify', [msg]);
let domain = config.domain;
let recList = await getRecordList(domain);
for (let rec of recList) {
if (config.watch[rec.Name]) {
//修改
await modifyRecord(rec, domain ,ip);
}
}
process.exit(0);
})();
以下为config.js
内容:
module.exports = {
//id 和 key 去腾讯申请即可
secretId: '1',
secretKey: '2',
//目前主要是针对一个域名做处理,domain主域名
domain: 'domain.com',
//二级域名,用来判断是否产生变化
testDomain: 'test.domain.com',
//监听二级域名前缀 test.domain.com site.domain.com 等等
watch: {
'test' : '主机连接使用SSH'
}
}
之后做一个crontab
定时器,每10分钟检查一次:
crontab -e
*/10 * * * * node /home/chrunlee/data/code/dnswatch/app.js >> /home/chrunlee/data/code/dnswatch/log.txt 2>&1
最后,说下关于端口的问题,其实很简单,做个中转 。
举例说明:
test.domain.com:10010
该地址可以正常访问服务器的项目
如果想不带端口,那么我们可以做一个隐性URL
.
test2.domain.com
隐性URL
指向 http://test.domain.com:10010
,这样在访问 test2.domain.com
的时候等于访问了 test.domain.com:10010
,端口就不显示了..
转载请注明出处: https://chrunlee.cn/article/nodejs-tencent-dnspod.html