You should get the book "DNS & BIND". Also, have you looked in your syslog
file to see the error messages that named produces when loading the files?
>; /var/named/named.hosts local hosts at the brewery
>; origin is xyz.
>;
>@ IN SOA nadeem.xyz. (
> root.nadeem.xyz.
> 16 ; serial
> 86400 ; refresh: one per day
> 3600 ;retry: one hour
> 3600000 ; expire: 42 days
> 604800 ; minimum: 1 week
> )
>IN NS nadeem.xyz.
This line has to be indented.
>;
>; loopback address
>localhost. IN A 127.0.0.1
>; brewery Ethernet
>nadeem IN A 143.43.249.50
>vaihbav IN A 143.43.249.138
>alex IN A 143.43.249.139
>===============================================================
>;
>; /var/named/named.local reverse mapping of 127.0.0
>; origin is 0.0.127.in-addr.arpa.
>;
>@ IN SOA nadeem.xyz. (
> root.nadeem.xyz.
>1 ; serial
>360000 ; refresh: 100 hrs
>3600 ; retry: one hour
>3600000 ; expire: 42 days
>360000 ; minimum: 100 hrs
>)
>IN NS nadeem.xyz.
>1 IN PTR localhost.
The NS line should be indented.
>===============================================================
>;
>; /var/named/named.rev reverse mapping of our IP addresses
>; origin is 43.143.in-addr.arpa.
>;
>@ IN SOA nadeem.xyz. (
> root.nadeem.xyz.
>16 ; serial
>86400 ; refresh: one per day
>3600 ; retry: one hour
>3600000 ; expire: 42 days
>604800 ; minimum: 1 week
> )
>IN NS nadeem.xyz.
This line should be indented.
>;
>; brewery
>50.249 IN PTR nadeem.xyz.
>139.249 IN PTR alex.xyz.
>138.249 IN PTR vaibhav.xyz.
--
Barry Margolin, bar...@bbnplanet.com
GTE Internetworking, Powered by BBN, Cambridge, MA
*** DON'T SEND TECHNICAL QUESTIONS DIRECTLY TO ME, post them to newsgroups.