This archive is retained to ensure existing URLs remain functional. It will not contain any emails sent to this mailing list after July 1, 2024. For all messages, including those sent before and after this date, please visit the new location of the archive at https://mailman.ripe.net/archives/list/[email protected]/
views in bind9
- Previous message (by thread): [staff] [local-ir at ripe.net]signing the roots
- Next message (by thread): add me
Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Jim Reid
Jim.Reid at nominum.com
Tue Apr 29 10:47:38 CEST 2003
Mansoor, your question would probably be better posted to bind9-users at isc.org, rather than this mailing list. dns-wg at ripe.net is for stuff related to the RIPE DNS Working Group and doesn't usually deal with errors or misunderstandings about named.conf files. If you do post to bind-users, I strongly suggest you provide your named.conf file *exactly* as your name server would see it. [Don't hide domain names or whatever.] That would permit someone on that list to accurately diagnose the problem. My guess is you have syntax errors in named.conf or perhaps you're running a BIND8 name server with a BIND9 configuration file. If it's the former, you can use named-checkconf from BIND9 to find the error. A sample named.conf file which uses views can be found under the tests directory in the BIND9 distribution. This directory contains a test suite for most of the features in BIND9. Here's an outline of how to set up views in BIND9, with an inside view for network 10/8 and an outside view for everything else. options { ...... }; controls { ...... }; view "inside" { match-clients { 10/8; }; zone "." { ....... }; zone "example" { ..... }; }; view "outside" { match-clients { !10/8; }; zone "." { ....... }; zone "example" { ..... }; }; If you have further questions about BIND9 config file syntax, please take them to bind9-users at isc.org, not here. And please don't ask me directly. :-)
- Previous message (by thread): [staff] [local-ir at ripe.net]signing the roots
- Next message (by thread): add me
Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
[ dns-wg Archives ]