1、首先,在主服务器上配置DNS解析器。打开配置文件/etc/named.conf,添加以下内容:
zone"example.com" IN {
type master;
file "example.com.zone";
allow-transfer { slave_ip_address:
};
};
zone"xx.168.192.in-addr.arpa" IN {
type master;
file "xx.168.192.zone";
allow-transfer{ slave_ip_address;
};
};
2、创建正向解析区域文件example.com.zone,并添加以下内容:
$TTL 86400
@ IN SOA ns1.example.com. admin.example.com. (
2022010101 ; Serial
3600 ; Refresh
1800 ; Retry
604800 ; Expire
86400 ) ; Minimum TTL
;
@ IN NS ns1.example.com.
@ IN NS ns2.example.com.
ns1 IN A master_ip_address
ns2 IN A slave_ip_address
www IN A web_server_ip_address
文章来源:https://www.toymoban.com/news/detail-819396.html
3、创建反向解析区域文件xx.168.192.zone,并添加以下内容:
$TTL 86400
@ IN SOA ns1.example.com. admin.example.com. (
2022010101 ; Serial
3600 ; Refresh
1800 ; Retry
604800 ; Expire
86400 ) ; Minimum TTL
;
@ IN NS ns1.example.com.
@ IN NS ns2.example.com.
1 IN PTR ns1.example.com.
2 IN PTR ns2.example.com.
10 IN PTR www.example.com.
文章来源地址https://www.toymoban.com/news/detail-819396.html
4、在从服务器上进行相同的配置,只需将type master改为type slave。
5、重启DNS服务,使配置生效。
sudo systemctl restart named
到了这里,关于【Linux】配置dns主从服务器,能够实现正常的正反向解析的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!