QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 882|回复: 1

DNS服务器请教

[复制链接]
发表于 2005-12-6 12:58:44 | 显示全部楼层 |阅读模式
//
// named.conf for Red Hat caching-nameserver
//

options {
        directory "/var/named";
        dump-file "/var/named/data/cache_dump.db";
        statistics-file "/var/named/data/named_stats.txt";
        /*
         * If there is a firewall between you and nameservers you want
         * to talk to, you might need to uncomment the query-source
         * directive below.  Previous versions of BIND always asked
         * questions using port 53, but BIND 8.1 uses an unprivileged
         * port by default.
         */
         // query-source address * port 53;
         forwarders {192.168.84.63;192.168.84.64;};
};

//
// a caching only nameserver config
//
controls {
        inet 127.0.0.1 allow { localhost;192.168.220.99; } keys { rndckey; };
};

zone "."  {
        type hint;
        file "named.ca";
};

zone "localdomain"  {
        type master;
        file "localdomain.zone";
        allow-update { none; };
};

zone "localhost"  {
        type master;
        file "localhost.zone";
        allow-update { none; };
};

zone "0.0.127.in-addr.arpa"  {
        type master;
        file "named.local";
        allow-update { none; };
};

zone "0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa"  {
        type master;
        file "named.ip6.local";
        allow-update { none; };
};

zone "255.in-addr.arpa"  {
        type master;
        file "named.broadcast";
        allow-update { none; };
};

zone "0.in-addr.arpa"  {
        type master;
        file "named.zero";
        allow-update { none; };
};

zone "84.168.192.in-addr.arpa"  {
        type master;
        file "84.168.192.zone";
};

zone "XXX.com.cn"  {
        type master;
        file "XXX.com.cn.zone";
};


include "/etc/rndc.key";


//
//  var/named/XXX.com.cn.zone
//

$TTL    86400

@       IN       SOA     ns.XXX.com.cn hostmaster.XXX.com.cn {
               2002010828 ; Serial
               3H      ; Refresh
               2H      ; Retry
               4W      ; Expire
               3D      ; Minimum
}
IN   NS        192.168.84.101
IN   MX    10  192.168.84.36


eoffice IN A 192.168.84.101
tyzd IN A 192.168.84.131



//
// var/named/84.168.192.zone
//

$N SOA ns.XXX.com.cn. root.XXX.com.cn. (
        2000051500 ; Serial
        28800 ; Refresh
        14400 ; Retry
        3600000 ; Expire
        86400 ; Minimum
)

IN NS ns.XXX.com.cn.
101 IN PTR eoffice.XXX.com.cn.
131 IN PTR tyzd.XXX.com.cn.




/////////////////////////////////////////////////
[root@localhost named]# nslookup eoffice.XXX.com.cn
Server:         192.168.220.48
Address:        192.168.220.48#53

** server can't find eoffice.XXX.com.cn: SERVFAIL


//////////////////////////////////////////////////
这是我自己建立的DNS服务器配置文件,但不能成功
 楼主| 发表于 2005-12-8 16:20:42 | 显示全部楼层
自己已经解决
在var/named/下面有chroot目录,将XXX.com.cn.zone 和 84.168.192.zone
放到chroot/var/named下面的目录就可以了
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

GMT+8, 2024-11-3 00:31 , Processed in 0.052753 second(s), 15 queries .

© 2021 Powered by Discuz! X3.5.

快速回复 返回顶部 返回列表