LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
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 12-17-2010, 01:07 PM   #1
sneakyimp
Senior Member
 
Registered: Dec 2004
Posts: 1,056

Rep: Reputation: 78
private nameservers


I'm trying to set up private nameservers for a domain, mbamdev.com.

I had someone follow these instructions from the registrar, enomcentral.com:
Quote:
To register, modify or delete a nameserver (i.e., create/modify/delete glue records), please follow these steps:

* Log into your account.
* Select the menu option Domains > Advanced Tools > Register a Name Server.
* Enter the required information into the appropriate section.
* Click Submit.

You can enter IP addresses in the following format:

* IPv4 (e.g., 192.168.0.1).
* IPv6 (e.g., 2001:252:0:1:0:0:2008:9).

In order to register nameservers, the domain in question must be registered with us. The above instructions will only work for .com, .net and .org domains. To register or update nameservers using .eu or .uk domains, please see the article, How to Register or Update Nameservers Using .EU and .UK Domains. To register or update nameservers using other TLDs, please submit a support ticket with the below attributes:

* Subject: "Register/Update Nameservers"
* Question: [Include the nameserver hostnames and their respective IPs]
* Category: DNS/Nameservers
* General DNS Info
I had my guy enter:
ns1.mbamdev.com - 209.59.179.63
ns2.mbamdev.com - 209.59.179.64

However, when I try to dig any of these domains (mbamdev.com, ns1.mbamdev.com, ns2.mbamdev.com) then I get nothing.

I'm wondering if I've done something wrong...?
 
Old 12-17-2010, 03:28 PM   #2
ddaemonunics
Member
 
Registered: May 2008
Location: Romania
Distribution: Debian
Posts: 242

Rep: Reputation: 41
you must configure the dns server on
ns1.mbamdev.com - 209.59.179.63
ns2.mbamdev.com - 209.59.179.64

I mean install bind, configure zone host file etc..
use whois to see if the domain has nameservers set up then dig @ns1.mbamdev.com mbamdev.com to see if the dns servers respond correctly
 
Old 12-17-2010, 03:33 PM   #3
MensaWater
LQ Guru
 
Registered: May 2005
Location: Atlanta Georgia USA
Distribution: Redhat (RHEL), CentOS, Fedora, CoreOS, Debian, FreeBSD, HP-UX, Solaris, SCO
Posts: 7,831
Blog Entries: 15

Rep: Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669
The name servers for mbamdev.com are not the ones you show - they are:
ns1.boomcycle.com and ns2.boomcycle.com per the below dig

Code:
dig -t ns mbamdev.com

; <<>> DiG 9.3.6-P1-RedHat-9.3.6-4.P1.el5_4.2 <<>> -t ns mbamdev.com
;; global options:  printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 45576
;; flags: qr rd ra; QUERY: 1, ANSWER: 2, AUTHORITY: 0, ADDITIONAL: 2

;; QUESTION SECTION:
;mbamdev.com.                   IN      NS

;; ANSWER SECTION:
mbamdev.com.            172755  IN      NS      ns1.boomcycle.com.
mbamdev.com.            172755  IN      NS      ns2.boomcycle.com.

;; ADDITIONAL SECTION:
ns1.boomcycle.com.      172755  IN      A       209.59.178.232
ns2.boomcycle.com.      172755  IN      A       209.59.178.233

;; Query time: 6 msec
;; SERVER: 10.0.4.108#53(10.0.4.108)
;; WHEN: Fri Dec 17 16:29:42 2010
;; MSG SIZE  rcvd: 107
Note: If you previously used the boomcycle.com DNS servers and recently made this change it may be it is just taking a while to propagate but I doubt it. As I've never gone to boomcycle.com or mbamdev.com before today it doesn't seem likely it is cached anywhere along the path I'd get to it.
 
1 members found this post helpful.
Old 12-17-2010, 04:14 PM   #4
sneakyimp
Senior Member
 
Registered: Dec 2004
Posts: 1,056

Original Poster
Rep: Reputation: 78
Quote:
Originally Posted by ddaemonunics View Post
you must configure the dns server on
ns1.mbamdev.com - 209.59.179.63
ns2.mbamdev.com - 209.59.179.64

I mean install bind, configure zone host file etc..
use whois to see if the domain has nameservers set up then dig @ns1.mbamdev.com mbamdev.com to see if the dns servers respond correctly
The target machine (to which both of those IPs are assigned) has Webhost Manager / CPanel installed. If you ask it using an IP address, it coughs up the correct DNS info:
Code:
[root@nameserver ~]# dig mbamdev.com @209.59.179.63

; <<>> DiG 9.3.3rc2 <<>> mbamdev.com @209.59.179.63
; (1 server found)
;; global options:  printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 9337
;; flags: qr aa rd; QUERY: 1, ANSWER: 1, AUTHORITY: 2, ADDITIONAL: 2

;; QUESTION SECTION:
;mbamdev.com.                   IN      A

;; ANSWER SECTION:
mbamdev.com.            14400   IN      A       209.59.179.63

;; AUTHORITY SECTION:
mbamdev.com.            86400   IN      NS      ns1.mbamdev.com.
mbamdev.com.            86400   IN      NS      ns2.mbamdev.com.

;; ADDITIONAL SECTION:
ns1.mbamdev.com.        14400   IN      A       209.59.179.63
ns2.mbamdev.com.        14400   IN      A       209.59.179.64

;; Query time: 41 msec
;; SERVER: 209.59.179.63#53(209.59.179.63)
;; WHEN: Fri Dec 17 17:12:35 2010
;; MSG SIZE  rcvd: 113
The problem is that you cannnot refer to the machine by any named domain using mbamdev.com because the world does not yet know where to find this domain and this domain's nameservers are ns1.mbamdev.com and ns2.mbamdev.com. It's a chicken-egg thing. People trying to find mbamdev.com look for ns1.mbamdev.com but they can't find it -- and vice versa.
 
Old 12-17-2010, 04:16 PM   #5
sneakyimp
Senior Member
 
Registered: Dec 2004
Posts: 1,056

Original Poster
Rep: Reputation: 78
Quote:
Originally Posted by MensaWater View Post
The name servers for mbamdev.com are not the ones you show - they are:
ns1.boomcycle.com and ns2.boomcycle.com per the below dig
You are correct that this domain had been moved. We changed the registration record about 5-7 hours ago as of right this moment.
 
  


Reply



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
Nameservers theburner9 Linux - Newbie 6 02-17-2010 11:37 AM
LXer: Keep your private documents private LXer Syndicated Linux News 0 06-07-2006 03:21 AM
Nameservers -- must I use my ISP's? Apollo77 Linux - Networking 5 03-09-2004 12:45 PM
The frustration of nameservers being down jobokoth Linux - General 3 08-20-2003 04:22 AM
nameservers.... Config Linux - Networking 2 01-19-2003 06:26 AM

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

All times are GMT -5. The time now is 01:14 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