首页 Linux网维 Linux下配置DNS服务器完全文档

Linux下配置DNS服务器完全文档

下载http://down.zhanghong.org.cn/bind-9.8.5-P2.tar.gz 我下载的文件放在/root目录下  进入目录解压缩  […

下载http://down.zhanghong.org.cn/bind-9.8.5-P2.tar.gz 我下载的文件放在/root目录下  进入目录解压缩  [root@tiejiang root]#tar xfz bind-9.3.1rc1.tar.gz

进如刚解压出来的目录  [root@tiejiang root]# cd bind-9.3.1rc1  编译配置  [root@tiejiang bind-9.3.1rc1]#./configure –prefix=/usr/local/named –enable-threads #–enable-threads开启多线程处理能力

[root@tiejiang bind-9.3.1rc1]#make  [root@tiejiang bind-9.3.1rc1]#make install  进入/usr/local/named 建立etc目录

[root@tiejiang bind-9.3.1rc1]#cd /usr/local/named  [root@tiejiang named]# mkdir etc  生成rndc控制命令的key文件

[root@tiejiang named]# sbin/rndc-confgen > etc/rndc.conf  从rndc.conf文件中提取named.conf用的key  root@linux named]# cd etc

[root@tiejiang etc]# tail -10 rndc.conf | head -9 | sed s/#\ //g > named.conf  自动在/usr/local/named/etc 生成named,conf文件

建立区文件目录  [root@tiejiang etc]# mkdir /var/named  进入/var/named  [root@tiejiang etc]# cd /var/named  建立localhost.zone文件

[root@tiejiang named]#vi localhost.zone  $TTL    86400  $ORIGIN localhost.  @                       1D IN SOA       @ root (

42              ; serial (d. adams)                                         3H              ; refresh

15M             ; retry                                         1W              ; expiry

1D )            ; minimum                         1D IN NS        @

1D IN A         127.0.0.1  建立named.local文件  [root@tiejiang named]#vi named.local

$TTL    86400  @       IN      SOA     localhost. root.localhost.  (                                       1997022700 ; Serial

28800      ; Refresh                                       14400      ; Retry

3600000    ; Expire                                       86400 )    ; Minimum

IN      NS      localhost.  1       IN      PTR     localhost. dig命令直接生成named.root文件  [root@tiejiang named]#dig > named.root

建立test.com域名正向解析文件  [root@tiejiang named]#vi test.zone  $ttl    1D  @               IN SOA  test.com.  root.test.com. (

1053891162                                         3H                                         15M

1W                                         1D )                         IN NS          test.com.

IN MX    5    test.com.  www                IN A          220.202.19.82  建立test.com域名反向解析文件

[root@tiejiang named]#vi test.local  $TTL 86400  @ IN SOA test.com. root.test.com.(  20031001;  7200;

3600;  43200;  86400);  @ IN NS test.com.  82 IN PTR DNS.test.com.  配置named.conf加如以下代码  [root@tiejiang etc]# vi named.conf

options {  directory “/var/named”; #named区文件目录  pid-file “named.pid”; #进程id文件名  };  controls {         inet 127.0.0.1 allow { localhost; } keys { rndckey; };

};  zone “.” IN {         type hint;         file “named.root”;  };  zone “localhost” IN {         type master;

file “localhost.zone”;         allow-update { none; };  };  zone “0.0.127.in-addr.arpa” IN {

type master;         file “named.local”;         allow-update { none; };  };  zone “test.com” IN {

type master;         file “test.zone”;         allow-update { none; };  }; zone “19.202.220.in-addr.arpa” IN {

type master;         file “test.local”;         allow-update { none; };  }; 现在配置完了可以启动BIND了  /usr/local/named/sbin/named -c /usr/local/named/etc/named.conf &

只要显示  runing表示运行成功  测试DNS  [root@tiejiang etc]# host 220202.19.82  89.19.202.220.in-addr.arpa domain name pointer

DNS.test.com.  如上显示表示DNS反向解析正常  [root@tiejiang etc]# ping www.test.com  PING www.test.com (220.202.19.82) 56(84) bytes of data.

如上显示表示正向解析正常  DNS配置完成 from: http://www.chinaunix.net/jh/16/500422.html  rndc 是配合bind的好帮手.使用帮助如下: 。

[root@rh9 named]# rndc -V Usage: rndc [-c config] [-s server] [-p port]         [-k key-file ] [-y key] [-V] command

command is one of the following:   reload        Reload configuration file and zones.   reload zone [class [view]]

Reload a single zone.   refresh zone [class [view]]                 Schedule immediate maintenance for a zone.

reconfig      Reload configuration file and new zones only.   stats         Write server statistics to the statistics file.

querylog      Toggle query logging.   dumpdb        Dump cache(s) to the dump file (named_dump.db).

stop          Save pending updates to master files and stop the server.   halt          Stop the server without saving pending updates.

trace         Increment debugging level by one.   trace level   Change the debugging level.   notrace       Set debugging level to 0.

flush         Flushes all of the servers caches.   flush [view]  Flushes the servers cache for a view.

status        Display status of the server.   *restart      Restart the server. * == not yet implemented

Version: 9.2.1 [root@rh9 named]# rndc stats [root@rh9 named]# rndc status number of zones: 5 debug level: 0

xfers running: 0 xfers deferred: 0 soa queries in progress: 0 query logging is OFF server is up and running

免责声明:文章内容不代表本站立场,本站不对其内容的真实性、完整性、准确性给予任何担保、暗示和承诺,仅供读者参考,文章版权归原作者所有。如本文内容影响到您的合法权益(内容、图片等),请及时联系本站,我们会及时删除处理。

作者: 3182235786a

为您推荐

linux文件命令

linux文件命令

在 Linux 中,我们可以使用 `with open()` 语句和 `write()` 函数来写入文件。以下是一个简单...
linux的命令

linux的命令

以下是一个简单的 Linux 命令示例,该命令将显示当前日期和时间: “`c #include <st...
linux 命令

linux 命令

由于 Linux 命令是由 C 语言编写的,因此下面是一个简单的用中文编写的 Linux 命令示例,它将输出“Hello...
linux命令tar

linux命令tar

这个问题看起来有些模糊,我不确定您是想了解如何在 Linux 系统中使用 tar 命令,还是如何编写一个名为 tar 的...
linux压缩命令

linux压缩命令

Linux压缩命令:高效管理文件和目录 Linux操作系统提供了一系列强大的压缩命令,使您能够高效地管理文件和目录。无论...

发表回复

返回顶部