Linode Forum
Linode Community Forums
 FAQFAQ    SearchSearch    MembersMembers      Register Register 
 LoginLogin [ Anonymous ] 
Post new topic  Reply to topic
Author Message
PostPosted: Tue Apr 13, 2010 8:51 am 
Offline
Senior Newbie

Joined: Tue Apr 13, 2010 8:44 am
Posts: 5
Hello,

I've just created a new subdomain for my yafz.org domain using DNS Manager.

Here's the output of my zone file:
Code:
; yafz.org [86804]
$TTL 86400
@   IN   SOA   ns1.linode.com. emre.sevinc.gmail.com. (
               2010041335
               14400
               14400
               1209600
               86400
            )
@      NS   ns1.linode.com.
@      NS   ns2.linode.com.
@      NS   ns3.linode.com.
@      NS   ns4.linode.com.
@      NS   ns5.linode.com.
@         MX   10   mail.yafz.org.
@         A   109.74.204.147
www         A   109.74.204.147
mail         A   109.74.204.147
emre         A   109.74.204.147


Now I'm connected to my server via SSH and I can ping yafz.org, www.yafz.org and mail.yafz.org but I cannot reach emre.yafz.org:

Code:
$ ping emre.yafz.org
ping: unknown host emre.yafz.org


Code:
$ ping yafz.org
PING yafz.org (109.74.204.147) 56(84) bytes of data.
64 bytes from li151-147.members.linode.com (109.74.204.147): icmp_seq=1 ttl=64 time=0.035 ms
64 bytes from li151-147.members.linode.com (109.74.204.147): icmp_seq=2 ttl=64 time=0.053 ms


Code:
$ ping mail.yafz.org
PING mail.yafz.org (109.74.204.147) 56(84) bytes of data.
64 bytes from li151-147.members.linode.com (109.74.204.147): icmp_seq=1 ttl=64 time=0.033 ms


I have created that new subdomain about 5-10 minutes ago. Should I wait more, or am I missing something?


Top
   
 Post subject:
PostPosted: Tue Apr 13, 2010 9:11 am 
Offline
Senior Newbie

Joined: Fri Apr 09, 2010 1:53 pm
Posts: 17
You need to wait a bit before all DNS entries are updated. I experienced it with updating subdomain names that it lasts at least 1 or 2 hours.


Top
   
 Post subject:
PostPosted: Tue Apr 13, 2010 9:12 am 
Offline
Senior Newbie

Joined: Tue Apr 13, 2010 8:44 am
Posts: 5
OK. I'll re-check after 1.5-2 hours. Thank you very much for your reply.


Top
   
 Post subject:
PostPosted: Tue Apr 13, 2010 10:56 am 
Offline
Senior Newbie

Joined: Tue Apr 13, 2010 8:44 am
Posts: 5
Still no resolution to IP address for emre.yafz.org, is this normal? I mean I'm connected to my linode server's shell and running the ping from there, I expect that adding a DNS A record such as emre to yafz.org to get emre.yafz.org would let me ping emre.yafz.org succesfully (from my linode server) in shorter time (but maybe then, I'm totally mistaken).


Top
   
 Post subject:
PostPosted: Tue Apr 13, 2010 11:11 am 
Offline
Newbie

Joined: Tue Apr 13, 2010 11:04 am
Posts: 4
I've never had delays that long, but it is resolving for me:

Code:
→ ping emre.yafz.org
PING emre.yafz.org (109.74.204.147): 56 data bytes
64 bytes from 109.74.204.147: icmp_seq=0 ttl=52 time=120.824 ms
64 bytes from 109.74.204.147: icmp_seq=1 ttl=52 time=121.582 ms
64 bytes from 109.74.204.147: icmp_seq=2 ttl=52 time=120.739 ms


Code:
→ dig a emre.yafz.org

; <<>> DiG 9.4.3-P3 <<>> a emre.yafz.org
;; global options:  printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 27854
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 0

;; QUESTION SECTION:
;emre.yafz.org.                 IN      A

;; ANSWER SECTION:
emre.yafz.org.          86269   IN      A       109.74.204.147

;; Query time: 34 msec
;; SERVER: 192.168.1.254#53(192.168.1.254)
;; WHEN: Tue Apr 13 10:10:49 2010
;; MSG SIZE  rcvd: 47


Top
   
 Post subject:
PostPosted: Tue Apr 13, 2010 12:57 pm 
Offline
Senior Member
User avatar

Joined: Sat Aug 30, 2008 1:55 pm
Posts: 1739
Location: Rochester, New York
It's resolving fine from here too:

Code:
rtucker@arrogant-bastard:~$ dig emre.yafz.org

; <<>> DiG 9.6.1-P2 <<>> emre.yafz.org
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 11069
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 0

;; QUESTION SECTION:
;emre.yafz.org.         IN   A

;; ANSWER SECTION:
emre.yafz.org.      86400   IN   A   109.74.204.147

;; Query time: 115 msec
;; SERVER: 208.67.222.222#53(208.67.222.222)
;; WHEN: Tue Apr 13 12:54:38 2010
;; MSG SIZE  rcvd: 47


I note that the negative caching TTL is 86400 seconds for yafz.org, which means that your local nameserver is permitted to cache the fact that emre.yafz.org doesn't exist for up to 24 hours. Odds are good you tried checking it before it went live on the nameservers, and thus, you're caching.

(The last number in the SOA:
Code:
rtucker@arrogant-bastard:~$ dig yafz.org SOA +short
ns1.linode.com. emre.sevinc.gmail.com. 2010041337 14400 14400 1209600 86400

... is the negative caching TTL.)

Quick solution: try again tomorrow :-) -rt


Top
   
 Post subject:
PostPosted: Tue Apr 13, 2010 2:19 pm 
Offline
Senior Newbie

Joined: Tue Apr 13, 2010 8:44 am
Posts: 5
Thank you very much for detailed answers and output. It is working for me now, too.


Top
   
Display posts from previous:  Sort by  
Post new topic  Reply to topic


Who is online

Users browsing this forum: No registered users and 3 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
Jump to:  
RSS

Powered by phpBB® Forum Software © phpBB Group