Hi there I'm currently configurating bind I have learned the basic bind config from Oreilly's great "dns and bind" book, but when I try to define my subdomains I get problems
in named.conf I have definied a master zone
Code:
zone "foo.com IN {
type master;
file "/var/named/master/foo.net";
notify yes;
};
and my foo.net looks like this :
Code:
$TTL 86400
@ 1D IN SOA dns.foo.com. electra.foo.com. (
20040421 ;serial
21600 ;refresh_time
3600 ;retry time
604800 ;expire
86400 ) ;negative caching of TTL
IN NS dns.foo.com.
IN NS dns1.foo.com.
dns IN A 217.211.255.204
I also have an reverse file which loads without problems, but I can the master file to load I get this in my log:
Code:
dns_master_load: /var/named/master/foo.net:12: unknown RR type 'dns'
thnx for any input.
Bookmarks