QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 854|回复: 1

BIND配置问题

[复制链接]
发表于 2005-12-18 16:49:47 | 显示全部楼层 |阅读模式
我新建了个域叫safenet.9966.org,但是BIND死活就是不行,我一nslookup hanji.safenet.9966.org就报server can't find hanji.safenet.9966.org: SERVFAIL
以下是我的配置文件:
named.conf:
//
// 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";
        forwarders {61.177.7.1;};
        /*
         * 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;
};

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

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

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

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 "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" IN {
        type master;
        file "named.ip6.local";
        allow-update { none; };
};

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

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


zone "safenet.9966.org" IN {
        type master;
        file "safenet.hosts";
        allow-update {none;};
};

zone "75.92.222.in-addr.arpa" IN {
        type master;
        file "safenet.ip";
        allow-update {none;};
};

include "/etc/rndc.key";

safenet.hosts正向解析文件:
$TTL 1D
$ORIGIN safenet.9966.org.
@        IN SOA        ns.safenet.9966.org.        root.safenet.9966.org. (
                                        1053801162
                                        3H
                                        15M
                                        1W
                                        1D )
        IN        NS        ns.safenet.9966.org.
ns        IN        A        192.168.1.1
hanji        IN        A        192.168.1.2

safenet.ip反向解析文件:
$TTL 86400
@        IN        SOA        ns.safenet.9966.org.        root.safenet.9966.org. (
20031001;
7200;
3600;
43200;
86400);
        IN        ns.safenet.9966.org.
1        IN        PTR        ns.safenet.9966.org.
2        IN        PTR        hanji.safenet.9966.org.

resolv:
#nameserver 61.177.7.1
nameserver 192.168.1.1

192.168.1.1这台机就是装BIND的机器,BIND的版本是9.2.4是系统是AS4,请各位大虾指点。
发表于 2005-12-19 16:51:11 | 显示全部楼层
你named.conf中并没有指定safenet.hosts正向解析文件和safenet.hosts正向解析文件。
回复

使用道具 举报

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

本版积分规则

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

© 2021 Powered by Discuz! X3.5.

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