LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   Bind Logs (https://www.linuxquestions.org/questions/linux-software-2/bind-logs-564108/)

thomaspsimon 06-24-2007 04:54 AM

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.ARPA
Jun 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.

acid_kewpie 06-24-2007 06:21 AM

well it says in the log that it's an automatic default... is something actually wrong?

thomaspsimon 06-24-2007 06:33 AM

Quote:

Originally Posted by acid_kewpie
well it says in the log that it's an automatic default... is something actually wrong?


Thanks Chris!

Though nothing is wrong i want to remove configuration related to IPv6 from my DNS server since i am not using any v6 IP numbers.

acid_kewpie 06-24-2007 06:34 AM

i assume that RFC's and other standard dictate that they must be there for a tefchnically correctly dns server. you have no obligation to utilize them at all.

thomaspsimon 06-24-2007 06:39 AM

Quote:

Originally Posted by acid_kewpie
i assume that RFC's and other standard dictate that they must be there for a tefchnically correctly dns server. you have no obligation to utilize them at all.

Ok Thanks Chris.


All times are GMT -5. The time now is 06:15 PM.