|
Bind Logs
Hi !
I have new FC7 installed server running as my web and email server.After configuring bind i was surprised to see the logs of it as follows :
Jun 24 11:49:40 server named[4245]: starting BIND 9.4.1 -u named -t /var/named/chroot
Jun 24 11:49:40 server named[4245]: found 2 CPUs, using 2 worker threads
Jun 24 11:49:40 server named[4245]: loading configuration from '/etc/named.conf'
Jun 24 11:49:40 server named[4245]: listening on IPv4 interface lo, 127.0.0.1#53
Jun 24 11:49:40 server named[4245]: listening on IPv4 interface eth0, 10.4.0.16#53
Jun 24 11:49:40 server named[4245]: listening on IPv4 interface eth1, 192.168.0.16#53
Jun 24 11:49:40 server named[4245]: automatic empty zone: 127.IN-ADDR.ARPA
Jun 24 11:49:40 server named[4245]: automatic empty zone: 254.169.IN-ADDR.ARPA
Jun 24 11:49:40 server named[4245]: automatic empty zone: 2.0.192.IN-ADDR.ARPA
Jun 24 11:49:40 server named[4245]: automatic empty zone: 255.255.255.255.IN-ADDR.ARPA
Jun 24 11:49:40 server named[4245]: automatic empty zone: 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.0.IP6.ARPA
Jun 24 11:49:40 server named[4245]: automatic empty 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.ARPAJun 24 11:49:40 server named[4245]: automatic empty zone: D.F.IP6.ARPA
Jun 24 11:49:40 server named[4245]: automatic empty zone: 8.E.F.IP6.ARPA
Jun 24 11:49:40 server named[4245]: automatic empty zone: 9.E.F.IP6.ARPA
Jun 24 11:49:40 server named[4245]: automatic empty zone: A.E.F.IP6.ARPA
Jun 24 11:49:40 server named[4245]: automatic empty zone: B.E.F.IP6.ARPA
Jun 24 11:49:40 server named[4245]: command channel listening on 127.0.0.1#953
Jun 24 11:49:40 server named[4245]: running
My named.conf os as follows,
options
{
query-source port 53;
directory "/var/named"; // the default
dump-file "data/cache_dump.db";
statistics-file "data/named_stats.txt";
memstatistics-file "data/named_mem_stats.txt";
};
controls
{
inet 127.0.0.1 port 953 allow { 127.0.0.1; } keys { "rndckey"; };
};
logging
{
channel default_debug
{
file "data/named.run";
};
channel update_debug
{
file "data/update-debug.log";
severity debug 3;
print-category yes;
print-severity yes;
print-time yes;
};
channel security_info
{
file "data/named-auth.info";
severity info;
print-category yes;
print-severity yes;
print-time yes;
};
category update { update_debug; };
category security { security_info; };
};
// view "internal"
//{
// match-clients { localhost; 10.0.0.0/8; };
/// match-destinations { localhost; 10.0.0.0/8; };
// recursion yes;
// notify yes;
// include "/etc/named.bionline.zones";
//};
include "/etc/rndc.key";
key biwebmail
{
algorithm hmac-md5;
secret "my --key--";
};
Can anyone please tell me why the log shows empty zones related to IPv6 and all when no zones are defined in named.conf.From where all these information comes ?
Note : View section is commented just for testing purpose.
|