12345678910111213141516171819202122232425262728293031323334353637 |
- 02-mixed-recursive-authority-setup
- Introduction
- ------------
- Ideally we will run the authoritative server independently of the
- recursive resolver.
- We need a way to run both an authoritative and a recursive resolver on
- a single platform, listening on the same IP/port. But we need a way to
- run only one of them as well.
- We have 3 basic components involved in this mix:
- 1. Authoritative zones
- 2. Cached RRSETs
- 3. Non-cached information
- There are a number of possible approaches to this:
- a. Make a module that includes all logic. (The BIND 9 module?)
- a'. extract major processing logic of auth into a separate library
- (maybe loadable module) and allow the resolver to use it, probably
- as a kind of hook.
- b. Look at authoritative server first, and pass queries to the
- recursive component.
- c. Make a module that combines authoritative and cache. Queries not
- found get passed to a resolver, which also has to update the cache.
- d. Have a simple "receptionist" module which knows which zones we are
- authoritative for and sends all queries to another daemon.
- Stephen did some modeling work on this already. We need to understand
- the latency and throughput implications of any of these approaches.
- It would be nice to solve the forwarding of packets to DDNS and XfrIn
- with this too, if it worked. Currently, it is not possible to run more
- instances of these modules to divide the load and it is not possible
- to run them without Auth.
|