This error has only one meaning: You forgot to include the root server cache.
> zone "22.56.196.208.in-addr.arpa" in {
> type master;
> file "reverse.local";
> };
>
> zone "kungfoo.org" in {
> type master; // what used to be called "primary"
> file "kungfoo.org";
> };
You need to include:
zone "." {
type hint;
file "named.cache";
};
The file 'named.cache' is obtained by the command:
dig . @198.41.0.6 >named.cache
Of course, since you don't have name services, I used the IP address of one
of the root nameservers. You would normally use 'rs.internic.net' in any
future updates of the cache file.
This is described in the NAMED-HOWTO document.
-- Al Longyear <longyear@longyear.com> - To unsubscribe from this list: send the line "unsubscribe linux-net" in the body of a message to majordomo@vger.rutgers.edu