Why my Bind wouldn start with this conf file?

options {
        version "Not available";
        directory "/var/cache/bind";
        forwarders {
                212.129.64.220;
                212.129.64.221;
};

acl "mynetwork" {
         127/8;  172.16.0.0/12;  10.0.0.0/8;  192.168.0.0/16; };

view "internal" {
         match-clients { mynetwork; };
         allow-query { mynetwork; };
         allow-recursion { mynetwork; };
         match-recursive-only yes;

};

view "external" {
         match-clients { any; };
         allow-query { any; };
         allow-recursion { none; };
         match-recursive-only no;
};
link|improve this question
So, what is your question? – mbx May 2 '11 at 9:59
I cleaned up the formatting for this question but there are several major parse errors (mostly missing ending braces), but also there doesn't seem to be any question here. Can you please edit and describe your actual question? – Caleb May 2 '11 at 10:10
Now just have a look please, i cant realise wat could be wrong... – radu gogu May 2 '11 at 10:28
feedback

1 Answer

You are missing the closing brace } in your options section. There is a closing brace that works either for the forwarders sub-section or the options section, but you need two so that both get closed.

Also, consider cleaning up the formatting so that separate directives are on separate lines.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.