本文介绍: 【代码】【Linux】配置dns主从服务器,能够实现正常的正反向解析。
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
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.
4、在从服务器上进行相同的配置,只需将type master
改为type slave
。
5、重启DNS服务,使配置生效。
sudo systemctl restart named
原文地址:https://blog.csdn.net/m0_74355247/article/details/135706633
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_58942.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。