what this mean!!!!!????
i solved the problem without any help ......but lets see if there is some one here who can solve the problem.........following is my original (with error) named.conf and zone files
//
// named.conf for Red Hat caching-nameserver
//
options {
directory "/var/named";
dump-file "/var/named/data/cache_dump.db";
statistics-file "/var/named/data/named_stats.txt";
allow-query {192.168.1.0/24;localhost;};
allow-recursion{192.168.1.0/24;localhost;};
/*
* If there is a firewall between you and nameservers you want
* to talk to, you might need to uncomment the query-source
* directive below. Previous versions of BIND always asked
* questions using port 53, but BIND 8.1 uses an unprivileged
* port by default.
*/
// query-source address * port 53;
};
//
// a caching only nameserver config
//
// a caching only nameserver config
//
controls {
inet 127.0.0.1 allow { localhost; } keys { rndckey; };
};
zone "." IN {
type hint;
file "named.ca";
};
zone "localhost" IN {
type master;
file "localhost.zone";
allow-update { none; };
};
zone "0.0.127.in-addr.arpa" IN {
type master;
file "named.local";
allow-update { none; };
};
zone "255.in-addr.arpa" IN {
type master;
file "named.broadcast";
allow-update { none; };
};
zone "0.in-addr.arpa" IN {
type master;
file "named.zero";
allow-update { none; };
};
zone "test.com" IN {
type master;
file "test.com.zone";
};
zone "1.168.192.in-addr.arpa" IN{
type master;
file "192.168.1.0.zone";
};
include "/etc/rndc.key";
and my zone file:
$TTL 86400
@ IN SOA ns.test.com. hostmaster.test.com. (
200510241 ; serial (d. adams)
8H ; refresh
2H ; retry
4W ; expiry
1D ) ; minimum
IN NS ns.test.com.
IN MX 0 mail.test.com.
ns IN A 192.168.1.1
www IN A 192.168.1.2
mail IN A 192.168.1.1
localhost IN A 127.0.0.1
thanks