LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Networking (https://www.linuxquestions.org/questions/linux-networking-3/)
-   -   really weird DNS issue. Help needed ASAP! (https://www.linuxquestions.org/questions/linux-networking-3/really-weird-dns-issue-help-needed-asap-21418/)

Supp0rtLinux 05-20-2002 06:15 PM

really weird DNS issue. Help needed ASAP!
 
We are a top level domain company. Due to some employees departing, I just inherited control of some root servers. All seems to be working just fine except for one problem.

A customer updated their sites' nameserver information. Our zone file reflects the change, but all ns queries fail. If I cat the zone file, it has two records for the zone and both are correct. But an nslookup or dig of the local nameserver returns "NX domain". I've restarted named, tried an "ndc reload", and even rebooted the server itself. Everytime, same problem... it's as though it's caching it's information somewhere, but not in RAM (since it would be purged on a reboot).

example:

[root@dns1]:/usr/local/named/db# grep netleads.ws zone.db
netleads.ws. 6H IN NS ns1.dts619.com.
netleads.ws. 6H IN NS ns2.dts619.com.

[root@dns1]:/usr/local/named/db# nslookup netleads.ws
Server: dns1.localhost
Address: 192.168.0.5

*** dns1.localhost can't find netleads.ws: Non-existent host/domain

I am thoroughly confused and need any help/suggestions available as the domain is owned by my boss and he wants it fixed ASAP.

Andrew

akohlsmith 05-20-2002 09:46 PM

wild guess
 
Make sure that their nameserver is allowing queries and zone transfers. I had a similar problem with one of my nameservers and it turned out that it was not allowed to axfr from the master server.

Funny though, because BIND will say "oh I just transfer from there" [transfer fails] "now I should have a copy here" [no copy] "no such domain"

Regards,
Andrew

jeremy 05-20-2002 10:02 PM

Here is what I am getting:
Code:

dig @ns1.dts619.com netleads.ws any

; <<>> DiG 8.2 <<>> @ns1.dts619.com netleads.ws any
; (1 server found)
;; res options: init recurs defnam dnsrch
;; got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 6
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 4, AUTHORITY: 0, ADDITIONAL: 17
;; QUERY SECTION:
;;      netleads.ws, type = ANY, class = IN

;; ANSWER SECTION:
netleads.ws.            1H IN A        211.141.0.137
netleads.ws.            1H IN NS        websahibi2k4.websahibi.net.
netleads.ws.            1H IN SOA      websahibi2k4.websahibi.net. admin.websahibi.net. (
                                        6              ; serial
                                        15M            ; refresh
                                        10M            ; retry
                                        1D              ; expiry
                                        1H )            ; minimum

netleads.ws.            1H IN MX        10 mail.netleads.ws.

Code:

dig @ns2.dts619.com netleads.ws any

; <<>> DiG 8.2 <<>> @ns2.dts619.com netleads.ws any
; Bad server: ns2.dts619.com -- using default server and timer opts

--jeremy


All times are GMT -5. The time now is 07:46 PM.