I'm having trouble when trying host a zone ... conceptually I get it, but I'm getting errors when putting in the code using
this example
This is the error messages, on the first line ...
internal/0.168.192.in-addr.arpa/IN: unknown class/type
Everything else appears to load fine, however I can't resolve FQDN's. I'm justs not seeing it, so if anyone could lend me a good set of eyes on this or give me some suggestions I'd really appreciate it!
the pertinent portion of my named.conf file is further below.
Code:
[root@dns log]# tail messages
Nov 6 01:24:57 dns named: internal/0.168.192.in-addr.arpa/IN: unknown class/type
Nov 6 01:24:57 dns named: zone localhost.localdomain/IN: loaded serial 0
Nov 6 01:24:57 dns named: zone localhost/IN: loaded serial 0
Nov 6 01:24:57 dns named: zone 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa/IN: loaded serial 0
Nov 6 01:24:57 dns named: zone 1.0.0.127.in-addr.arpa/IN: loaded serial 0
Nov 6 01:24:57 dns named: zone 0.in-addr.arpa/IN: loaded serial 0
Nov 6 01:24:57 dns named: zone dns.fieldmonkey.com/IN: loaded serial 2011052501
Nov 6 01:24:57 dns named: zone 2.130.31.66.in-addr.arpa/IN: loaded serial 2011052501
Nov 6 01:24:57 dns systemd[1]: named.service: control process exited, code=exited status=2
Nov 6 01:24:57 dns systemd[1]: Unit named.service entered failed state.
Code:
/* ZONE INFORMATION FOR INTERNAL NETWORK */
view "internal" {
match-clients {
localhost;
192.168.0.0/24;
};
zone "." {
type hint;
file "named.ca";
};
zone "dns.fieldmonkey.com" {
type master;
file "dns.fieldmonkey.com.lan";
allow-update {none; };
};
zone "0.168.192.in-addr.arpa" {
type master;
file "0.168.192.db";
allow-update { none; };
};
include "/etc/named.rfc1912.zones";
};
Thanks!