如何创建 rDNS(反向 DNS),我正在使用 Centos 7.0 并且我需要为 50 个 IP 和域创建 rDNS。
您能指导我如何创建吗?
例子。
Example.com - xxx.xxx.xxx.xx0
Example.xyz - xxx.xxx.xxx.xx1
预先感谢
答案1
创建区域:
[root@ns01 ~]# cat /etc/named/named.conf.local
zone "DOMAIN.com" {
type master;
file "/etc/named/zones/db.DOMAIN.com";
};
zone "REVERSEIP.in-addr.arpa" {
type master;
file "/etc/named/zones/db.REVERSEIP";
};
如果您的范围是 192.168.1.0,则 REVERSEIP 将为 1.168.192
然后添加区域:
[root@ns01 ~]# cat /etc/named/zones/db.REVERSEIP
$TTL 604800
@ IN SOA DOMAIN.com. admin.DOMAIN.com. (
23 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
; name servers
IN NS FQDN_NS.com.
; PTR Records
32 IN PTR REC1.com.
最后一个条目是 REC1.com 反向查找 IP:192.168.1.32