Named starts, but no opened port

Jackabuzah

New member
Joined
Mar 13, 2005
Messages
1
Dear folks,

I'm running DA on my FreeBSD server and I did the install this morning. About everything seems to work, except named. The process starts but I did not see any result. The port 53 is closed, and there is nothing running 'behind' it.. The config seems to be ok, but I'm a newb to FreeBSD. On my RH9 server named did work, but somehow it now doesn't...

This is the /var/named.conf

options {
directory "/var/named";
/*
* If there is a firewall between you and nameservers you want
* to talk to, you might need to uncomment the query-source
* directive below. Previous versions of BIND always asked
* questions using port 53, but BIND 8.1 uses an unprivileged
* port by default.
*/


notify-source * port 53;
transfer-source * port 53;
query-source address * port 53;
};

logging{
channel simple_log {
file "/var/log/named/bind.log" versions 3 size 5m;
severity debug 1;
print-time yes;
print-severity yes;
print-category yes;
};
category default{
simple_log;
};
};

//
// a caching only nameserver config
//
controls {
inet 127.0.0.1 allow { localhost; } keys { rndckey; };
};
zone "." IN {
type hint;
file "named.ca";
};

zone "localhost" IN {
type master;
file "localhost.zone";
allow-update { none; };
};

zone "0.0.127.in-addr.arpa" IN {
type master;
file "named.local";

I tried to get it logging, but the file keeps empty..

I also tried the dnscheck.net check, but it says that the dns was unreachable (timeout)...
 
Back
Top