当我尝试使用相同的 IP 定义反向区域时,反向区域named-checkconf
会抛出:
$ named-checkconf named.conf.cust_zone
named.conf:63: zone '70.231.168.192.in-addr.arpa': already exists previous definition: named.conf:52
我的配置文件。
...
// zone for the 1st domain
zone "domain_1.com"{
type master;
file "file"
}
// reverse zone for 1st domain
zone "70.231.168.192.in-addr.arpa" {
type master;
file "file"; }
// zone for the 2nd domain
zone "domain_2.com"{
type master;
file "file"
}
// reverse zone for 2nd domain
zone "70.231.168.192.in-addr.arpa" {
type master;
file "file";
}
...
当我更改其中一个反向区域名称时,它会起作用。但我不确定它会起作用吗?
那么,有没有办法为一个 IP 配置两个反向区域?