BIND 9.2.0 Release Notes
Table Of Contents
- 1 New Features
- BIND 8.1.2 Features Supported on HP-UX 11.0
- New BIND 9.2.0 Features
- Incremental Zone Transfer
- DNS Security
- Dynamic DNS Update
- TSIG-Based Security
- Lightweight Resolver Library and Daemon
- Improved Logging Mechanism
- Extended Configuration Syntax and Options
- New Options in options Statement
- New Option in “server” Statement
- New Options in “zone” Statement
- named-checkconf
- named-checkzone
- rndc
- Generating rndc.conf File
- New Command Line Options
- Changed Features
- Unsupported Features
- 2 Installation Information
- 3 Documentation
- 4 Known Problems, Limitation and Defect Fixes

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”;
};
};