If you want to make that a little more readable, you can use an
acl statement:
acl "fx-subnet" { 192.253.254/24; };
view "internal" {
match-clients { "fx-subnet"; };
};
Just be sure you define the ACL outside of the
view, since you can't use acl statements
inside views yet.
What can you put inside a view statement? Nearly
anything else. You can define zones with zone
statements, describe remote name servers with
server statements, and configure TSIG keys with
key statements. You can use most
options substatements within a view, but if you
do, don't enclose them in an options
statement; just use them "raw" in the
view statement:
acl "fx-subnet" { 192.253.254/24; };
view "internal" {
match-clients { "fx-subnet"; };
recursion yes; // turn recursion on for this view
// (it's off globally, in the options statement)
};
Any configuration option you specify within a view overrides the
like-named global option (e.g., one in the options
statement) for hosts that match
match-clients.
For a complete list of what's supported inside the
view statement on the version of BIND 9 you run
(because it changes from release to release), see the file
doc/misc/options in the BIND distribution.
Here's the Special Effects Lab's full
named.conf file, to give you an idea of the
power of views:
options {
directory "/var/named";
};
acl "fx-subnet" { 192.253.254/24; };
view "internal" { // internal view of our zones
match-clients { "fx-subnet"; };
zone "fx.movie.edu" {
type master;
file "db.fx.movie.edu";
};
zone "254.253.192.in-addr.arpa" {
type master;
file "db.192.253.254";
};
};
view "external" { // view of our zones for the rest of the world
match-clients { any; }; // implicit
recursion no; // outside of our subnet, they shouldn't be
// requesting recursion
zone "fx.movie.edu" {
type master;
file "db.fx.movie.edu.external"; // external zone data file
};
zone "254.254.192.in-addr.arpa" {
type master;
file "db.192.253.254.external"; // external zone data file
};
};
Notice that each view has an fx.movie.edu and a
254.253.192.in-addr.arpa zone, but the zone data
files are different in the "internal" and
"external" views. This allows us to show the outside
world a different "face" than we see internally.
The order of the view statements is important
because the first view that a host's IP address matches is the
one that dictates what it sees. If the "external" view
were listed first in the configuration file, it would occlude the
"internal" view because the "external" view
matches all addresses.