QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 684|回复: 1

bind DNS和windows的委派

[复制链接]
发表于 2004-11-30 18:13:42 | 显示全部楼层 |阅读模式
小弟最近装好了一台DNS,双网卡。连外网地址是192.168.203.224,内网的192.168.8.1,装的是bind-9.3.0,采用view的方式,都能解析了,但就是不能被windows委派。请问这是什么问题。
我的named.conf

options {
        /*
         * 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;
        directory "/var/named";
};
controls {
        inet 127.0.0.1 allow { localhost; } keys { rndckey; };
};


acl "exter" {
        {192.168.8.0/24;};
};

view "iQ"{
        match-clients {192.168.8.0/24;};
zone "." {
        type hint;
        file "named.ca";
};
zone "localhost" {
        allow-update { none; };
        type master;
        file "localhost.zone";
};
zone "0.0.127.in-addr.arpa" {
        allow-update { none; };
        type master;
        file "named.local";
};
zone "iQ.com" {
        type master;
        file "iQ.com.zone";
        allow-update {exter;};
};

zone "8.168.192.in-addr.arpa"{
        type master;
        file "192.168.8.rev";
        allow-update { exter;};
};
zone "iQue.net" {
        type forward;
        forwarders {127.0.0.1;};
};
};
view "world" {
        match-clients {any;};
        recursion no;
zone "iQ.com" {
        type master;
        file "iQ.com-internel";
};
zone "iQue.net"{
        type slave;
        file "iQue.net";
        masters {192.168.200.13;};
};
};
include  "/etc/rndc.key"
我的iQ.com.zone
$TTL 86400
@               IN      SOA     rh3.iq.com.root.iq.com (
                                2004113001 ; serial
                                28800 ; refresh
                                14400 ; retry
                                3600000 ; expire
                                86400 ; ttl
                                )
                IN      NS      rh3.iq.com.
                IN      MX 10   mail.iq.com.
rh3             IN      A       192.168.8.1
rh3             IN      TXT     "test DNS"


ftp             IN      A       192.168.8.1

我的192.168.8.rev
$TTL 86400
@               IN      SOA     rh3.iq.com.root.iq.com. (
                                2004112908 ; serial
                                28800 ; refresh
                                14400 ; retry
                                3600000 ; expire
                                86400 ; ttl
                                )
                IN      NS      rh3.iq.com.

1               IN      PTR     rh3.iq.com
1               IN      PTR     ftp.iq.com
1               IN      PTR     ns1.iq.com
21              IN      PTR     network.iq.com
100             IN      PTR     zh.iq.com

iQ.com-internal

$TTL 86400
@               IN      SOA     rh3.iq.com. root.iq.com. (
                                2004113009 ; serial
                                28800 ; refresh
                                14400 ; retry
                                3600000 ; expire
                                86400 ; ttl
                                )
                IN      NS      rh3.iq.com.

rh3             IN      A       192.168.203.224
zh              IN      A       192.168.203.224
发表于 2004-11-30 18:47:09 | 显示全部楼层
关注中
回复

使用道具 举报

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

本版积分规则

GMT+8, 2024-11-6 23:21 , Processed in 0.060521 second(s), 15 queries .

© 2021 Powered by Discuz! X3.5.

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