BIND 9.2.0 Release Notes

New Features
New BIND 9.2.0 Features
Chapter 118
14. max-ncache-ttl
15. transfer-format
16. transfer-source
17. request-ixfr
18. provide-ixfr
19. cleaning-interval
20. key
21. server
22. trusted-keys
23. sig-validity-interval
An example of View (split DNS setup) is as shown below:
view “internal” {
// This should match our internal networks
match-clients { 10.0.0.0/8; };
// Provide recursive service to internal clients only
recursion yes;
// Provide a complete view of the example.com zone
// including addresses of internal hosts.
zone “example.com” {
type master;
file “example-internal.db”;
};
};
view “external” {
match-clients { any; };
// Refuse recursive service to external clients.
recursion no;
// Provide a restricted view of the example.com zone
// Containing only publicly accessible hosts.
zone “example.com” {
type master;
file “example-internal.db”;
};
};