DNS
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsSystem AdministrationDNS

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
Stop making mediocre tutorials.The best tutorials are video! Camtasia Studio makes it easy to create engaging, buzz-building screen videos at any size, in any popular format. Download the free trial!
  #1  
Old August 26th, 2003, 12:46 PM
razor1 razor1 is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Aug 2003
Posts: 3 razor1 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Did I setup named.conf and the zone files correctly?

Can someone take a look at my attached named.conf and zone files to see if I set them up correctly? I'm not going through a router and I have named.exe running as well. This is on a WinXP Pro box. I've set my DNS server address to my IP in my connection properties and it does show up in ipconfig/all. When I browse the net it is slower but it seems that my box is resolving DNS queries. Also I didnt see any lines in the config labeled ns1.mobile-tech-consulting.com anywhere so is that the nameserver I'm supposed to use at my registrar?
Attached Files
File Type: zip dns.zip (1.4 KB, 531 views)

Last edited by razor1 : August 26th, 2003 at 12:52 PM.

Reply With Quote
  #2  
Old August 26th, 2003, 03:12 PM
SilentRage's Avatar
SilentRage SilentRage is offline
DNS/BIND Guru
Dev Shed Specialist (4000 - 4499 posts)
 
Join Date: Jun 2003
Location: OH, USA
Posts: 4,193 SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level)SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level)SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level)SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level)SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level)SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level)SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level) 
Time spent in forums: 1 Week 5 Days 14 h 27 m 56 sec
Reputation Power: 77
browsing the net should not be slower. You should specify your ISP's dns servers to use, not MY ISP's dns servers. ;-)

# use these servers as forwarders when resolving requests
#
forwarders { 68.51.0.6; 68.51.0.5; };


Change the IP addresses to your ISP's dns servers.

And you need to remove these lines:

;Or
mail CNAME mx1.mail.yahoo.com. ;If using another mail service. e.g. yahoo
__________________
Send me a private message if you would like me to setup your DNS for you for a price of your choosing. This is the preferred method if your DNS needs to be fixed/setup fast and you don't have the time to bounce messages back and forth on a forum. Also, check out these links:

Whois Direct | DNS Crawler | NS Trace | Compare Free DNS Hosts

Last edited by SilentRage : August 26th, 2003 at 03:15 PM.

Reply With Quote
  #3  
Old August 26th, 2003, 05:52 PM
razor1 razor1 is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Aug 2003
Posts: 3 razor1 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Okay I will do that, now in the 1.0.0.127.IN-ADDR-ARPA.zone file the lines with ns.yourdomain.com are correct? There is no 1 or 2 appeneded to the ns? In the ARPA.zone file I got from SilentRage's site should I just replace the ns.example.com in the SOA, NS and PTR lines with my domain and obviously leave out the SilentRage.hotpop.com entry? Also since I dont see any lines in the config labeled ns1.yourdomain.com anywhere just ns.yourdomain.com in the ARPA.zone file, is that the nameserver I'm supposed to use at my registrar?
Attached Files
File Type: zip dns.zip (1.4 KB, 282 views)

Reply With Quote
  #4  
Old August 26th, 2003, 07:17 PM
SilentRage's Avatar
SilentRage SilentRage is offline
DNS/BIND Guru
Dev Shed Specialist (4000 - 4499 posts)
 
Join Date: Jun 2003
Location: OH, USA
Posts: 4,193 SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level)SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level)SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level)SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level)SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level)SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level)SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level) 
Time spent in forums: 1 Week 5 Days 14 h 27 m 56 sec
Reputation Power: 77
it doesn't matter what names you use at your registrar. Things will be setup like this:

[registrar]
anyprefix.mobile-tech-consulting.com (127.0.0.1)
anyotherprefix.mobile-tech.consulting.com (127.0.0.1)

The above example assumes you only have 1 DNS server and that your registrar requires that you specify at least 2 dns servers. In which case, the IP's would be the same.

Now even though you told the registrar the IP addresses for the dns server domains, you need to configure them in your dns server zone file as well.

[mobile-tech-consulting.com.zone]
$ORIGIN mobile-tech-consulting.com.
...
@ NS anyprefix
@ NS anyotherprefix
anyprefix A 127.0.0.1
anyotherprefix A 127.0.0.1

In the main zone file above I specified the 2 dns server domains for @ (which is the $ORIGIN). I also gave those 2 hosts IP addresses. The 2 host names have the $ORIGIN appended to them since they don't end with a period.

[reverse IP zone]
$ORIGIN 4.3.2.1.IN-ADDR.ARPA.
...
@ NS anyprefix.mobile-tech-consulting.com.
@ NS anyotherprefix.mobile-tech-consulting.com.

In the reverse IP zone I added the 2 dns server domains as well. This time however I spelled them out completely and slapped a period on the end since this isn't their home zone.

Reply With Quote
  #5  
Old August 28th, 2003, 12:41 AM
razor1 razor1 is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Aug 2003
Posts: 3 razor1 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Unhappy

Hmm, I tried to do what SilentRage suggested and setup my nameservers with my registrar in which both failed. Reason from them, Entity reference not found. I'll attach my zone files again and if someone could take a look and let me know what I've done wrong I'd be grateful.
Attached Files
File Type: zip dns.zip (798 Bytes, 302 views)

Reply With Quote
  #6  
Old August 28th, 2003, 10:04 AM
SilentRage's Avatar
SilentRage SilentRage is offline
DNS/BIND Guru
Dev Shed Specialist (4000 - 4499 posts)
 
Join Date: Jun 2003
Location: OH, USA
Posts: 4,193 SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level)SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level)SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level)SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level)SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level)SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level)SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level) 
Time spent in forums: 1 Week 5 Days 14 h 27 m 56 sec
Reputation Power: 77
If your registrar doesn't allow you to add the following, then you need to contact them and ask them about the problem. I have had people before who had problems adding name servers to their domain registry. I told them to complain to their registrar, and their registrar fixed the problem.

ns1.mobile-tech-consulting.com - 127.0.0.1
ns2.mobile-tech-consulting.com - 127.0.0.1

Do NOT use the IP address 127.0.0.1. Instead use the IP address of your dns server.

Reply With Quote
Reply

Viewing: Dev Shed ForumsSystem AdministrationDNS > Did I setup named.conf and the zone files correctly?


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 3 hosted by Hostway