bind9/bin/tests/system/views/ns2/named2.conf
Brian Wellington 126c8d0c08 Add listen-on-v6 {none;}; , since without it, v6 was binding v4 mapped
sockets and causing failures on some platforms
2000-06-13 22:45:20 +00:00

41 lines
533 B
Text

options {
query-source address 10.53.0.2;
port 5300;
pid-file "named.pid";
listen-on { 10.53.0.2;
10.53.0.4; };
listen-on-v6 {none;};
recursion no;
notify yes;
};
view "internal" {
match-clients { 10.53.0.2;
10.53.0.3; };
zone "." {
type hint;
file "root.hint";
};
zone "example" {
type master;
file "internal.db";
allow-update { any; };
};
};
view "external" {
match-clients { any; };
zone "." {
type hint;
file "root.hint";
};
zone "example" {
type master;
file "example.db";
};
};