在CU上看到了一篇关于BIND9配置文件详解的文章,感觉不错,现转载了分享一下。

//named.conf 注释说明 by shellyxz@163.com
// 此文件对bind9的默认配置文件的说明
//options 语句指定全局选项,对于某些特定区域服务器,某些选项以后可能会被覆盖。bind9的选项超过100个.....
options
{
        // Those options should be used carefully because they disable port
        // randomization
        // query-source    port 53;        
        // query-source-v6 port 53;
        
        // Put files that named is allowed to write in the data/ directory:
        directory "/var/named"; //让named程序cd到指定的目录。任何输出文件也写入这个目录中
        dump-file                 "data/cache_dump.db";//数据库路径,rndc dumpdb命令用到
        statistics-file         "data/named_stats.txt";//服务器统计信息文件的路径,rndc stats使用
        memstatistics-file         "data/named_mem_stats.txt";//每次访问的使用的内存信息

};
//日志处理方式配置,bind9有很强大的日志处理能力,可以满足不同用户的要求,具体要参考相关资料
logging
{
/*      If you want to enable debugging, eg. using the 'rndc trace' command,
 *      named will try to write the 'named.run' file in the $directory (/var/named).
 *      By default, SELinux policy does not allow named to modify the /var/named directory,
 *      so put the default debug log file in data/ :
 */
        channel default_debug {  //通道,消息能去的地方:syslog、文件或者/dev/null,这儿是bind中预先
                                 //定义的default_debug通道,日志记录到named.run文件中,严重性为dynamic
                file "data/named.run";//文件通道
                severity dynamic;//严重性,也就是syslog中的级别
                print-category   yes;//不同的print选项增加或者减少消息前缀
                print-severity   yes;//增加严重性前缀
        };        
};
//
//
//view语句用于创建分离式DNS(split DNS),view将一个用于控制哪些客户能看到哪个view的
//访问列表,用于view中所有区的一些选项,最后还有区本身打包一起。语法如下:
// view view-name {
//         match-clients { address_match_list };
//         view_optionl;.....
//         zone_statement;....
//    };
view "localhost_resolver"  //配置仅缓存服务器的配置方法。
{
/* This view sets up named to be a localhost resolver ( caching only nameserver ).
 * If all you want is a caching-only nameserver, then you need only define this view:
 */
        match-clients                 { localhost; };
#######################################################################################################
        //说明:match-clients 后面所给的是address_match_list,也就是访问控制列表(说明在这可以引用acl)
        //有4个表是预先定义的:
        //any  #所有主机
        //localnets  #本地上所有主机
        //localhost  #机器本身
        //none       #没有任何主机
        //总结:!!!在不同的view中,这是个很关键的位置,控制了不同的机器的查询(当然还有其他选项配合使用!!
########################################################################################################
        match-destinations        { localhost; };
        recursion yes;      // 运行递归查询
        # all views must contain the root hints zone:
        include "/etc/named.root.hints";
//“hint”是一个列出根域(".")服务器的DNS记录的集合,可以使用以下方法生成
//dig @f.root-servers.net . ns > named.root.hints
//dig . ns > named.root.hints 
//前者直接从根得到结果,后者是来自于本地服务器的缓存,所以结果可能不正确,尽管概率很小

/* these are zones that contain definitions for all the localhost
         * names and addresses, as recommended in RFC1912 - these names should
         * ONLY be served to localhost clients:
         */
        include "/etc/named.rfc1912.zones";
};
view "internal" //内部view
{
/* This view will contain zones you want to serve only to "internal" clients
   that connect via your directly attached LAN interfaces - "localnets" .
 */
        match-clients                { localnets; };
        //由于是内部view,所以是默认是localnets,也可以自己定义哪些主机可以访问,格式如下:
        //match-clients     { 192.168.0.0/16; 206.168.198.192/28; };
        match-destinations        { localnets; };
        recursion yes;
        // all views must contain the root hints zone:
        include "/etc/named.root.hints";

// include "named.rfc1912.zones";
        // you should not serve your rfc1912 names to non-localhost clients.
 
        // These are your "authoritative" internal zones, and would probably
        // also be included in the "localhost_resolver" view above :

zone "my.internal.zone" { 
                type master;//区的类型,有:master(主)、slave(从)、stub(存根)、delegation-only(仅授权)
                            //master:区的主服务器,必须在声明master区时提供一条file语句,文件是DNS资源记录的集合
                            //slvae:区的从服务器,正常情况下从服务器保留区数据库的一个完整副本
                            //stub:也是从服务器,但是和slave的区别是,只传送NS记录。
                file "my.internal.zone.db";//dns数据文件
#############################################################################################################
//当然这还有很多选项可以选择,选项的含义都很简单,从语义上可以看
//allow-query { address_mathc_list }; [any]   
//allow-transfer { address_match_list }; [any] 
//allow-update { address_match_list }; [none] 
//如果一个区用于动态更新,就会出现上面这个选项,列表说明可以发生更新的主机,动态更新仅适用于master区。动态更
//新的概念另看其他资料。大体上是针对动态ip做的处理,bind让DHCP守护进程通知BIND它所做的地址分配情况,因而可随时
//更新DNS数据库的内容,具体情况查阅相关资料
##############################################################################################################
        };
        zone "my.slave.internal.zone" { //区从服务器
                type slave;
                file "slaves/my.slave.internal.zone.db";
                masters { /* put master nameserver IPs here */ 127.0.0.1; } ; 
                //masters语句列出了一台或则多台机器的ip地址,可以从这些ip地址得到区数据库。
                // put slave zones in the slaves/ directory so named can update them
        };        
        zone "my.ddns.internal.zone" { //动态更新区
                type master;           
                                       
                allow-update { key ddns_key; }; //上面有说明
                file "slaves/my.ddns.internal.zone.db";
                // put dynamically updateable zones in the slaves/ directory so named can update them
        };                        
};
//key语句定义了用于某个特定服务器身份验证的有名字的加密密钥。
key ddns_key //ddns_key这是个key-id,key_id必须在首次使用之前在named.conf文件中定义
{
        algorithm hmac-md5; //加密算法,TSIG有多种加密算法,但是bind只实现了hmac-md5一种
        secret "use /usr/sbin/dns-keygen to generate TSIG keys";
        //用dns-keygen产生的TSIG(transaction signature)事物签名。TSGI只用于服务器之间的消息和响应上,
        //而不用在服务器和解析器之间。事物签名验证双方的身份,证实数据没有被篡改过。
        
};
##############################################################################################
//DNS安全的策略有访问控制列表、TSIG,还有DNSSEC,它是对DNS的扩展,使用公钥加密,对区数据的来源
//进行验证,并验证完整性。DNSSEC依赖于一条信任链:根服务器提供顶级域的有效信息,顶级域提供二级
//域的有效信息,以此类推。DNSSEC的配置说明如下:
//trusted-keys语句用于实现RFC2535中规定的DNSSEC安全机制。该语句的每一项都是一个5元组,标识出与
//该域的域名服务器进行安全通信所需的域名、标志、协议、算法和密钥。
// trusted-keys{
//       domain flags protol algorithm key;
//       domain flags protol algorithm key;
//             ....
//              }
##############################################################################################
view    "external"
{
/* This view will contain zones you want to serve only to "external" clients
 * that have addresses that are not on your directly attached LAN interface subnets:
 */
        match-clients                { any; }; 
        //这是外部view,所以允许所有主机查询
        match-destinations        { any; };

recursion no;          
        //对来自于外部的查询,禁止递归,一定程度上减轻服务器负担,提高安全
        // you'd probably want to deny recursion to external clients, so you don't
        // end up providing free DNS service to all takers

allow-query-cache { none; };//控制了查找缓存数据和根服务器线索文件的主机
        // Disable lookups for any cached data and root hints

//每个view都必须包含线索文件,怎么得到线索文件上面有说明
        include "/etc/named.root.hints";

// These are your "authoritative" external zones, and would probably
        // contain entries for just your web and mail servers:
        // 对外的权威区域
        zone "my.external.zone" { 
                type master;
                file "my.external.zone.db";
        };
};
#################################################################################################
# 以上就是named.conf原始配置文件的全部内容,当然要满足特定环境的需要还有很多东西需要改变或者添加                                                                                           
# 下面做些总结:                                                                                
# 1.DNS服务器有各种工作方式,缓存域名、转发、从域名、主域名、分离域名等方式,还可以配合起来使用;    
# 2.split DNS的实现原理:通过view语句match-clients、match-destination等选项实现;                   
# 3.每个view中必须包含hints文件,hints文件可以通过 dig @root-server . ns > file 的方式实现;     
# 4.注意区数据文件里边的各种RR,记得在更新区数据文件后,一定提高SOA记录里serial number值;

################################################################

文章转自:http://bbs.chinaunix.net/viewthread.php?tid=2293026

BIND9配置文件详解模板[转载]的更多相关文章

  1. AndroidManifest.xml配置文件详解(转载)

     AndroidManifest.xml配置文件详解 2013-01-05 10:25:23 分类: Android平台 AndroidManifest.xml配置文件对于Android应用开发来说是 ...

  2. WebConfig配置文件详解(转载自逆心的博客)

    <?xml version="1.0"?> <!--注意: 除了手动编辑此文件以外,您还可以使用 Web 管理工具来配置应用程序的设置.可以使用 Visual S ...

  3. quartz配置文件详解

    quartz配置文件详解(转载)     quartz学习总结: 一.关于job:    用Quartz的行话讲,作业是一个执行任务的简单Java类.任务可以是任何Java代码.只需你实现org.qu ...

  4. [转载]Spring配置文件详解一:

    原文地址:与base-package="com.xx">Spring配置文件详解一:<context:annotation-config/>与<contex ...

  5. WebConfig配置文件详解

    今天看到博客园一位朋友整理的一个WebConfig配置文件详解,觉得不错,转载一下: <?xml version="1.0"?> <!--注意: 除了手动编辑此文 ...

  6. spring配置文件详解--真的蛮详细

    spring配置文件详解--真的蛮详细   转自: http://book.51cto.com/art/201004/193743.htm 此处详细的为我们讲解了spring2.5的实现原理,感觉非常 ...

  7. Rsyslog配置文件详解

    Rsyslog配置文件详解https://my.oschina.net/0757/blog/198329 # Save boot messages also to boot.log 启动的相关信息lo ...

  8. GRUB2配置详解:默认启动项,超时时间,隐藏引导菜单,配置文件详解,图形化配置

    配置文件详解: /etc/default/grub # 设定默认启动项,推荐使用数字 GRUB_DEFAULT=0 # 注释掉下面这行将会显示引导菜单 #GRUB_HIDDEN_TIMEOUT=0 # ...

  9. Redis for Windows(C#缓存)配置文件详解

    Redis for Windows(C#缓存)配置文件详解   前言 在上一篇文章中主要介绍了Redis在Windows平台下的下载安装和简单使用http://www.cnblogs.com/aehy ...

随机推荐

  1. Java从入门到精通——数据库篇Oracle 11g服务详解

    装上Oracle之后大家都会感觉到我们的电脑慢了下来,如何提高计算机的速度呢?我们应该打开必要的服务,关闭没有用的服务.下面是Oracle服务的详解: Oracle ORCL VSS Writer S ...

  2. 【http】生命周期和http管道技术 整理中

    httpModules 与 httpHandlers  正在写demo public class Httpext : IHttpModule { public void Dispose() { thr ...

  3. 【netstream】探索数据传输对象1

    什么是“从当前流中读取一个字符串.字符串有长度前缀,一次 7 位地被编码为整数.” 来探索一下: 写一段简单的程序: FileStream fs= new FileStream("d:\\q ...

  4. 理解PHP 依赖注入|Laravel IoC容器

    看Laravel的IoC容器文档只是介绍实例,但是没有说原理,之前用MVC框架都没有在意这个概念,无意中在phalcon的文档中看到这个详细的介绍,感觉豁然开朗,复制粘贴过来,主要是好久没有写东西了, ...

  5. 为aps.net core项目加上全局异常捕捉和记录

    在asp.net core中的方案在这里:http://stackoverflow.com/questions/30385246/can-asp-net-5-app-useerrorhandler-a ...

  6. Careercup - Google面试题 - 5732809947742208

    2014-05-03 22:10 题目链接 原题: Given a dictionary, and a list of letters ( or consider as a string), find ...

  7. android编程常见问题-No Launcher activity found!

    新手编程常见的问题: 问题表现: console提示:No Launcher activity found! The launch will only sync the application pac ...

  8. c++ 从标注输入流读取行

    #include <string.h> #include <iostream> #include <vector> #include <stdio.h> ...

  9. 【POJ】【2151】Check the difficulty of problems

    概率DP kuangbin总结中的第8题 一开始题目看错导致想转移方程想错了……想成f[i][j]表示前 i 个队伍中最多的做出来 j 道题的概率……sigh 看了下题解……其实是对于每个队伍 i 单 ...

  10. C++ 操作法重载

    http://www.weixueyuan.net/view/6382.html http://wuyuans.com/2012/09/cpp-operator-overload/