描述
redis 允许从 redis 数据库中读取区域数据。此插件应紧邻 plugins.cfg 中的 etcd。
语法
redis
redis 从 redis 服务中加载权威区域
地址将默认为本地 redis 服务器(localhost:6379)
redis {
address ADDR
password PWD
prefix PREFIX
suffix SUFFIX
connect_timeout TIMEOUT
read_timeout TIMEOUT
ttl TTL
}
地址
是用于连接的 redis 服务器地址,格式为 主机:端口 或 ip:端口。密码
是 redis 服务器的 auth 密钥连接超时
等待 redis 服务器连接的毫秒数读取超时
等待 redis 服务器响应的毫秒数ttl
dns 记录的默认 ttl,如果未提供,则为 300前缀
将 PREFIX 添加到所有 redis 密钥后缀
将 SUFFIX 添加到所有 redis 密钥
示例
. {
redis example.com {
address localhost:6379
password foobared
connect_timeout 100
read_timeout 100
ttl 360
prefix _dns:
}
}
反向区域
暂不支持反向区域。
代理
暂不支持代理。
redis 数据库中的区域格式
区域
每个区域都存储在 redis 中,形式为带有 区域 的哈希映射作为密钥
redis-cli>KEYS *
1) "example.com."
2) "example.net."
redis-cli>
DNS RR
dns RR 以 json 字符串的形式存储在哈希映射中,使用地址作为字段密钥。@ 用于区域自己的 RR 值。
A
{
"a":{
"ip4" : "1.2.3.4",
"ttl" : 360
}
}
AAAA
{
"aaaa":{
"ip6" : "::1",
"ttl" : 360
}
}
CNAME
{
"cname":{
"host" : "x.example.com.",
"ttl" : 360
}
}
TXT
{
"txt":{
"text" : "this is a text",
"ttl" : 360
}
}
NS
{
"ns":{
"host" : "ns1.example.com.",
"ttl" : 360
}
}
MX
{
"mx":{
"host" : "mx1.example.com",
"priority" : 10,
"ttl" : 360
}
}
SRV
{
"srv":{
"host" : "sip.example.com.",
"port" : 555,
"priority" : 10,
"weight" : 100,
"ttl" : 360
}
}
SOA
{
"soa":{
"ttl" : 100,
"mbox" : "hostmaster.example.com.",
"ns" : "ns1.example.com.",
"refresh" : 44,
"retry" : 55,
"expire" : 66
}
}
示例
$ORIGIN example.net.
example.net. 300 IN SOA <SOA RDATA>
example.net. 300 NS ns1.example.net.
example.net. 300 NS ns2.example.net.
*.example.net. 300 TXT "this is a wildcard"
*.example.net. 300 MX 10 host1.example.net.
sub.*.example.net. 300 TXT "this is not a wildcard"
host1.example.net. 300 A 5.5.5.5
_ssh.tcp.host1.example.net. 300 SRV <SRV RDATA>
_ssh.tcp.host2.example.net. 300 SRV <SRV RDATA>
subdel.example.net. 300 NS ns1.subdel.example.net.
subdel.example.net. 300 NS ns2.subdel.example.net.
上述区域数据应按如下方式存储在 redis 中
redis-cli> hgetall example.net.
1) "_ssh._tcp.host1"
2) "{\"srv\":[{\"ttl\":300, \"target\":\"tcp.example.com.\",\"port\":123,\"priority\":10,\"weight\":100}]}"
3) "*"
4) "{\"txt\":[{\"ttl\":300, \"text\":\"this is a wildcard\"}],\"mx\":[{\"ttl\":300, \"host\":\"host1.example.net.\",\"preference\": 10}]}"
5) "host1"
6) "{\"a\":[{\"ttl\":300, \"ip\":\"5.5.5.5\"}]}"
7) "sub.*"
8) "{\"txt\":[{\"ttl\":300, \"text\":\"this is not a wildcard\"}]}"
9) "_ssh._tcp.host2"
10) "{\"srv\":[{\"ttl\":300, \"target\":\"tcp.example.com.\",\"port\":123,\"priority\":10,\"weight\":100}]}"
11) "subdel"
12) "{\"ns\":[{\"ttl\":300, \"host\":\"ns1.subdel.example.net.\"},{\"ttl\":300, \"host\":\"ns2.subdel.example.net.\"}]}"
13) "@"
14) "{\"soa\":{\"ttl\":300, \"minttl\":100, \"mbox\":\"hostmaster.example.net.\",\"ns\":\"ns1.example.net.\",\"refresh\":44,\"retry\":55,\"expire\":66},\"ns\":[{\"ttl\":300, \"host\":\"ns1.example.net.\"},{\"ttl\":300, \"host\":\"ns2.example.net.\"}]}"
redis-cli>