LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Networking (https://www.linuxquestions.org/questions/linux-networking-3/)
-   -   BIND / named issues (https://www.linuxquestions.org/questions/linux-networking-3/bind-named-issues-15318/)

Ratclaws 03-01-2002 05:26 AM

BIND / named issues
 
this is ticking me off. can any one see why this isn't working???

this is the error:

/etc/rc.d > nslookup ns.danncasey.net localhost
Note: nslookup is deprecated and may be removed from future releases.
Consider using the `dig' or `host' programs instead. Run nslookup with
the `-sil[ent]' option to prevent this message from appearing.
Server: localhost
Address: 127.0.0.1#53

** server can't find ns.danncasey.net.: SERVFAIL


----------------- config files-----------------
----named.boot
;

; boot file for name server

directory /var/named

; type domain source host/file backup file

cache . named.ca root.cache

primary danncasey.net named.hosts

primary 0.0.127.IN-ADDR.ARPA named.local

primary 1.168.192.IN-ADDR.ARPA named.rev

------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.
*/
// query-source address * port 53;
};

//
// a caching only nameserver config
//
zone "." IN {
type hint;
file "caching-example/named.ca";
};

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

zone "0.0.127.in-addr.arpa" IN {
type master;
file "caching-example/named.local";
allow-update { none; };
};

zone "1.168.192.in-addr.arpa" {
type master;
file "danncasey.net.rev";
};

zone "danncasey.net" {
type master;
notify no;
file "danncasey.net";
};

---------danncasey.net
@ IN SOA danncasey.net. router.danncasey.net. (
1 ; Serial 1
10800 ; Refresh 8 hours
3600 ; Retry 2 hours
604800 ; Expire 1 week
86400 ; Minimum 1 day
)
NS ns.danncasey.net.
IN A 192.168.1.1
IN MX 10 mail.example.com.
IN MX 20 209.94.102.73.


localhost A 127.0.0.1
ns A 192.168.1.1
A 216.179.69.105
-------danncasey.net.rev
@ IN SOA ns.danncasey.net. root.ns.danncasey.net. (
1 ; Serial 1
10800 ; Refresh 8 hours
3600 ; Retry 2 hours
604800 ; Expire 1 week
86400 ; Minimum 1 day
)
NS ns.danncasey.net.

1 PTR ns.danncasey.net.
PTR dns.danncasey.net.
PTR www.danncasey.net.:smash: :tisk: :confused:

karunesh 03-01-2002 10:11 PM

Have you restarted your name server,after configurating your named data files. ?

:Pengy:

Ratclaws 03-08-2002 01:09 AM

yeah, restarted the whole computer too.


All times are GMT -5. The time now is 03:04 AM.