LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Server
User Name
Password
Linux - Server This forum is for the discussion of Linux Software used in a server related context.

Notices


Reply
  Search this Thread
Old 11-30-2006, 01:36 AM   #16
chort
Senior Member
 
Registered: Jul 2003
Location: Silicon Valley, USA
Distribution: OpenBSD 4.6, OS X 10.6.2, CentOS 4 & 5
Posts: 3,660

Rep: Reputation: 76

Tink, that tool is amazing. It reported some problems I didn't even realize I had... Just when I thought I was done fixing crazy BIND problems... sigh.

BTW Jim I did notice another problem with your zone: Your SOA is www.acfd.biz., it should be ns1.acfd.biz.

Also, could you post the full output of the following command (from your server):
Code:
$ dig acfd.biz ns
and if possible
Code:
$ dig acfd.biz axfr
 
Old 11-30-2006, 10:54 AM   #17
Tinkster
Moderator
 
Registered: Apr 2002
Location: earth
Distribution: slackware by choice, others too :} ... android.
Posts: 23,067
Blog Entries: 11

Rep: Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928
Quote:
Originally Posted by chort
Tink, that tool is amazing. It reported some problems I didn't even realize I had... Just when I thought I was done fixing crazy BIND problems... sigh.
Glad you like it ;} ... I do, too.


Cheers,
Tink
 
Old 11-30-2006, 10:48 PM   #18
jscedunn
LQ Newbie
 
Registered: Nov 2006
Posts: 12

Original Poster
Rep: Reputation: 0
Chort,
I rebuilt my EL 4 from the ground up and started from square one. I have reconfigured everything according to your specifications.

This is the Zone file, hopefully I didnt mess any of this up

$TTL 88440
$ORIGIN acfd.biz.
@ 1D IN SOA ns1.acfd.biz. jscedunn@yahoo.com. (
3010 ; serial
3H ; refresh 6 hours
15M ; retry 1 hour
1W ; expire 1 week
1D ) ; minimum

1D IN NS ns1.acfd.biz.
1D IN NS ns2.acfd.biz.

IN MX 10 mail.acfd.biz.

ns1 IN A MyIpAddress
ns2 IN A MyIpAddress
www IN A MyIpAddress
mail IN A MyIpAddress



This is the first dig
; <<>> DiG 9.2.4 <<>> acfd.biz ns
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 43774
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 2, AUTHORITY: 0, ADDITIONAL: 2

;; QUESTION SECTION:
;acfd.biz. IN NS

;; ANSWER SECTION:
acfd.biz. 86400 IN NS ns2.acfd.biz.
acfd.biz. 86400 IN NS ns1.acfd.biz.

;; ADDITIONAL SECTION:
ns1.acfd.biz. 88440 IN A MyIpAddress
ns2.acfd.biz. 88440 IN A MyIpAddress

;; Query time: 0 msec
;; SERVER: MyIpAddress#53(MyIpAddress)
;; WHEN: Thu Nov 30 22:18:56 2006
;; MSG SIZE rcvd: 94



This is the second dig; <<>> DiG 9.2.4 <<>> acfd.biz axfr
;; global options: printcmd
acfd.biz. 86400 IN SOA ns1.acfd.biz. jscedunn\@yahoo.co m. 3010 10800 900 604800 86400
acfd.biz. 86400 IN NS ns1.acfd.biz.
acfd.biz. 86400 IN NS ns2.acfd.biz.
acfd.biz. 88440 IN MX 10 mail.acfd.biz.
mail.acfd.biz. 88440 IN A MyIpAddress
ns1.acfd.biz. 88440 IN A MyIpAddress
ns2.acfd.biz. 88440 IN A MyIpAddress
www.acfd.biz. 88440 IN A MyIpAddress
acfd.biz. 86400 IN SOA ns1.acfd.biz. jscedunn\@yahoo.co m. 3010 10800 900 604800 86400
;; Query time: 1 msec
;; SERVER: MyIpAddress#53(MyIpAddress)
;; WHEN: Thu Nov 30 22:28:23 2006
;; XFR size: 9 records



And this is the regular dig
dig www.acfd.biz

; <<>> DiG 9.2.4 <<>> www.acfd.biz
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 47595
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 2, ADDITIONAL: 2

;; QUESTION SECTION:
;www.acfd.biz. IN A

;; ANSWER SECTION:
www.acfd.biz. 88440 IN A MyIpAddress

;; AUTHORITY SECTION:
acfd.biz. 86400 IN NS ns2.acfd.biz.
acfd.biz. 86400 IN NS ns1.acfd.biz.

;; ADDITIONAL SECTION:
ns1.acfd.biz. 88440 IN A MyIpAddress
ns2.acfd.biz. 88440 IN A MyIpAddress

;; Query time: 0 msec
;; SERVER: MyIpAddress#53(MyIpAddress)
;; WHEN: Thu Nov 30 22:30:17 2006
;; MSG SIZE rcvd: 114

Sorry about the format I am not sure how to put it in nice code blocks yet.

Maybe this will shine some light on this

Thanks
Jim
 
Old 11-30-2006, 11:51 PM   #19
chort
Senior Member
 
Registered: Jul 2003
Location: Silicon Valley, USA
Distribution: OpenBSD 4.6, OS X 10.6.2, CentOS 4 & 5
Posts: 3,660

Rep: Reputation: 76
You zone file seems fine, aside from the the whole @ in your e-mail address (it should be a . ).

The basic problem is that DNS requests to your IP are still timing-out. If the requests were reaching your box, but named wasn't running, it would be connection: refused. The fact that it's timing-out means that something on the network is silently dropping the datagrams. It's either your ISP, or some network equipment at your location.
 
Old 12-01-2006, 12:03 AM   #20
chort
Senior Member
 
Registered: Jul 2003
Location: Silicon Valley, USA
Distribution: OpenBSD 4.6, OS X 10.6.2, CentOS 4 & 5
Posts: 3,660

Rep: Reputation: 76
PS, your ISP seems very, very restrictive on bandwidth-usage. Have you ]]read this?
 
Old 12-21-2006, 08:43 PM   #21
jscedunn
LQ Newbie
 
Registered: Nov 2006
Posts: 12

Original Poster
Rep: Reputation: 0
Follow up on DNS problems

Chort,
After taking your advice and looking into my ISP provider, I found the problem. It lies with software that is installed by the ISP to speed up the internet browsing.
Well, I switched ISP and reconfigured as we discussed. Now all works well with my site. Through the process I learned alot and thanks to this forum.

One more thing,
If I want to host 2 domains with one Static IP how do I configure the DNS records? With recursive I dont think I can use the same ip address or do I configure on recursive lookup?

Anyway Thanks
Jim
 
  


Reply

Tags
bind, nameserver



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
New and frustrated galantesghost LinuxQuestions.org Member Intro 2 09-11-2005 04:16 PM
I am frustrated (HELP) dimsun Linux - Newbie 3 11-02-2004 08:29 PM
getting really frustrated... minm Linux - Software 17 09-27-2004 10:25 PM
So frustrated!!! brit Mandriva 7 09-16-2003 06:45 AM
I'm about to get frustrated! EyeGuy Linux - Software 14 11-09-2001 12:30 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Server

All times are GMT -5. The time now is 04:18 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration