[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debian-users:53966] Re: Bind9の設定



朧月 さんは書きました:
> Bind9書いてみたのですが、Windowsのコマンドプロンプト
> からnslookupを行うと、以下のように返されます。
>
> hoehoe can't find 192.168.1.119 Non-exitent domain
>
> 外向けの設定ファイルはIT屋さんがやってくれたので、自分で内向けを書いて
> みたという感じです。
>   

ゾーンファイル以外に named.conf (/etc/bind/ の中) で設定してますか?

view "internal" {
match-clients { local; };

zone "." {
type hint;
file "/etc/bind/db.root";
};

zone ....
}

view "external" {
match-clients { any; };
allow-query { any; };

zone "." {
type hint;
file "/etc/bind/db.root";
};

zone "run.sh" {
type master;
file "/etc/bind/zones/run.zone";
};
}

とかしてます.

Regards,
Ryu : http://run.sh/