このスレッドはクローズされています。記事の閲覧のみとなります。
named 設定でエラー |
|
- æ¥æï¼ 2007/03/11 19:23
- ååï¼ TomTom
- お世話になります。いつもこのサイトには助けられています。感謝申し上げます。
さて、内容は下記の通りなんですが、ご教授頂けませんでしょうか?よろしくお願いします。
①不明点・障害内容:named.confの設定終了後、起動させるとエラーメッセージが出ます。
②ログの有無 :エラーメッセージ↓ (有:その内容):zone localhost/IN: loading master file localhost.zone: file not found _default/localhost/IN: file not found zone 0.0.127.in-addr.arpa/IN: loading master file named.local: file not found _default/0.0.127.in-addr.arpa/IN: file not found zone xxxxx.com/IN: loaded serial 2007031000 zone 24.168.192.in-addr.arpa/IN: loaded serial 2007031000
下記のようにファイルを設定しています。
named.conf -------------------------------------------------------------------------------------- // generated by named-bootconf.pl options { directory "/var/named"; /* * 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; // bindを使用する範囲を指定(以下を追加) allow-query{ 127.0.0.1; 192.168.24.1/24; }; // スレーブDNSサーバを指定(スレーブDNSサーバがない場合は、コメントアウト) //allow-transfer{ // 192.168.1.250; //}; // 外部のネームサーバに問い合わせを転送する場合(通常はコメントアウト) // 複数ある場合は、複数行で記述します。 //forwarders{ // xxx.xxx.xxx.xxx; // xxx.xxx.xxx.xxx; // 複数DNSがあるとき //}; };
// // a caching only nameserver config // controls { inet 127.0.0.1 allow { localhost; } keys { rndckey; }; }; zone "." IN { type hint; file "named.ca"; };
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; }; };
include "/etc/rndc.key";
zone "xxxxx.com" { type master; file "xxxxx.com.db"; allow-update { none; }; };
zone "24.168.192.in-addr.arpa" { type master; file "24.168.192.in-addr.arpa.db"; allow-update { none; }; };
/var/named/xxxx.com.db -------------------------------------------------------------------------------- $TTL 86400 @ IN SOA xxxxx.com. root.xxxxx.com. ( 2007031000 ; serial 3600 ; refresh (1 hour) 900 ; retry (15 minutes) 604800 ; expire (1 week) 86400 ; negative (1 day) ) IN NS xxxx.com. IN MX 10 xxxx.com. IN A 192.168.24.100 host IN CNAME xxxx.com. www IN CNAME xxxx.com.
/var/named/24.168.192.in-addr.arpa.db ---------------------------------------------------------------------------------------------- $TTL 86400 @ IN SOA xxxx.com. root.xxxx.com. ( 2007031000 ; serial 3600 ; refresh (1 hour) 900 ; retry (15 minutes) 604800 ; expire (1 week) 86400 ; negative (1 day) ) IN NS xxxx.com. 100 IN PTR xxxx.com.
色々とファイル内容の設定を変えて試しては見るもののうまくいきません。何か設定で足りない物が あるのでしょうか?
よろしくお願いいたします。
③Distribution :Fedora Core Version:6 ④Service Name : Version: ⑤ネットワーク構成:NTT 光プレミアム+ISP:ASAHI-ネット(固定IP)
|
■ コンテンツ関連情報
Re: named 設定でエラー ( No.6 ) |
|
- æ¥æï¼ 2007/03/11 20:25
- ååï¼ TomTom
- 管理者様 ご丁寧に有難うございます。
おかげさまで、ファイルを入れ替えることができました。 まだ、質問があるのですが、まとめてから 別スレを立てさせて頂きます。
有難うございました。
|
■ その他