前へ|次へ|戻る

bind 2003 named.conf

Out line

なんとなく 動くので 良いと 思っているが もうすこし 正常か 誤動作 かは 判明 していないが!

system

$ uname -a
Linux lx 2.4.22 #22 Thu Mar 23 21:25:39 JST 2006 i686 unknown
$ ls /usr/lib/setup/ | grep -i plamo
plamo-3.3

named.conf

まず 現状を 見てみよう 正解では ないだろうが

# sed -e '/^#/d' /etc/named.conf | sed -e '/^\//d'
acl bcnet.ne.jp {
        192.168.0.0/24;
        127.0.0.1;
};

options {
        directory "/var/named";
        pid-file "/var/run/named/named.pid";
        recursion yes;
        allow-query {
        127.0.0.1;
        192.168.0.0/24;
    };
 
allow-transfer { none; };  
forwarders {
        127.0.0.1; 
        192.168.0.1; 
}; 
};
controls {
       inet 127.0.0.1 port 953
               allow { 127.0.0.1; } keys { "rndc-key"; };
 };
zone "." {
        type hint;
        file "root.hints";
};
zone "localhost" {
        type master;
        file "localhost.zone";
};
zone "0.0.127.in-addr.arpa" {
        type master;
        file "localhost.rev";
};
zone "bcnet.ne.jp" {
        type master;
        file "bcnet.hosts";
};
zone "0.168.192.in-addr.arpa" {
        type master;
        file "bcnet.hosts.rev";
};


include "/etc/rndc.key";

部分的に 見てゆこう

にゃんたろう 拝!
2006年 4月 6日 (木) 21:12:50 JST 作成


前へ|次へ|戻る

Copyright © 2004.-2007. nyantarou All Rights Reserved.