Am So, den 19.09.2004 schrieb linuxserver um 18:39: > Here are the three files from /var/named/chroot/etc they are linked to > the files in /etc > Richard Tracy Did you manually edit the named.conf file or even the rndc.conf file? In the named.conf at least is broken syntax, because you use "#" signs, and because of other brokenness. This is no valid comment sign. Either put a "//" in front of a single line you want to comment, or use "/* */" around a part of several lines you want to comment. The named.conf is invalid. Check the { } pairs. You puzzled the order of the entries. Attached a corrected named.conf which should work. Alexander -- Alexander Dalloz | Enger, Germany | GPG key 1024D/ED695653 1999-07-13 Fedora GNU/Linux Core 2 (Tettnang) kernel 2.6.8-1.521smp Serendipity 19:36:44 up 20 days, 16:53, load average: 0.37, 0.41, 0.30
options { directory "/var/named"; listen-on { 127.0.0.1; 192.168.1.188; 24.208.185.146; }; query-source address * port 53; transfer-source * port 53; notify-source * port 53; }; controls { inet 127.0.0.1 allow { localhost; } keys { "rndc-key"; }; }; key "rndc-key" { algorithm hmac-md5; secret "V+V5yU3HhVd6K/T4e1A7uA=="; }; 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; }; }; zone "healthbizwiz.com" IN { type master; file "healthbizwiz.com.zone"; }; include "/etc/rndc.key";
Attachment:
signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil