zone "example.com" IN { type master; file "/etc/bind/db.example.com"; }; 这段配置指定了 example.com 区域是一个主区域(即该服务器是权威服务器),并且区域数据存储在 /etc/bind/db.example.com 文件中。 4. 测试 DNS 服务器配置是否正确 在启动 Bind9 服务器之前,最好先测试配置文件的正确性。
PTRrecords are primarily used for reverse name resolution, as they pointIPaddresses back to a particular name. SeeSection 15.2.3.4.2, “A Reverse Name Resolution Zone File”for examples ofPTRrecords in use. last-IP-digit指令是IP地址的最后一个数字,FQDN-of-system是完全限定域名(FQDN)。 PTR记录...
zone"example.com"IN { type master; file"example.zone"; allow-update {192.168.3.131; }; allow-transfer {192.168.3.5; }; };//这个zone是反向解析的配置,"15.16.172.in-addr.arpa"前面的ip是172.16.15倒着写。zone"3.168.192.in-addr.arpa"IN { type master; file"example.arpa"; allow-update {...
zone "example.com" { type slave; file "db.example.com"; masters { 192.0.2.10; }; check-interval 30m; }; 在上述示例中,check-interval 30m;表示从服务器将每隔 30 分钟检查一次主服务器是否有更新。 请注意,配置项的具体位置可能因 bind9 版本和操作系统而有所不同。 因此,建议查阅所使用的 bind9...
zone"example.com"{typemaster;file"example.com.hosts";# 1.ACL使用举例限制查询# 假如要限制只有 221.3.131.5 和 221.3.131.6 可以从本地服务器传输 “example.com” 的区信息 在 zone 语句里使用 allow-transfer 子句allow-transfer{221.3.131.5;221.3.131.6;};# 使用定义的 acl_name 限制允许进行域传输的主...
// structure of BIND configuration filesinDebian, *BEFORE* you customize // this configuration file. // // If you are just adding zones, pleasedothatin/etc/bind/named.conf.local //include"/etc/bind/named.conf.options"; //include"/etc/bind/named.conf.local"; ...
zone "example.com" { type master; file "example.com.hosts"; allow-transfer { 221.3.131.5; 221.3.131.6; }; }; 上面的配置没有使用ACL,若使用acl,需要以下的配置步骤: S1在/etc/bind/named.conf.acls中添加如下的acl语句,对允许查询的主机列表命名 acl atlist { 221.3.131.5; 221.3.131.6; }; S2...
zone "example.com" { type master; file "/etc/bind/db.example.com"; }; 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 同时,还需要创建一个区域文件,命名为db.example.com,内容如下: $TTL 604800 @ IN SOA ns.example.com. admin.example.com. ( ...
zone "example.com" { type master; file "/etc/bind/db.example.com"; }; [...] Now use an existing zone file as a template 现在使用一个已有域文件作为模板 $ sudo cp /etc/bind/db.local /etc/bind/db.example.com Now, to edit our zone 现在,编辑我们的域 db.example.com: ; ; BIND ...
zone"1.0.10.in-addr.arpa"IN{typemaster;file"example.com.rr.zone";allow-update{none;};}; 这个示例与标准 zone 语句相比,除区域名称外太多什么不同之处。注:逆向名称解析要求区域文件中前三个逆向解析的 IP 地址块后接 .in-addr.arpa。这样可让在逆向名称解析区域文件中使用的单独 IP 块与这个区域关联...