I need a little push getting DNS to work.
Here is my /etc/hosts:
Code:
127.0.0.1 localhost.localdomain localhost
74.207.mmm.nnn host.mydomain.net host
# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts
where mmm.nnn = my last two quads of my linode's ip
host=my linode;
mydomain registered at go data.
The domain was registered a week ago, and GoDaddy apparently automatically parked records for
mydomain.net
mail.mydomain.net
www.mydomain.netSo about 24 hours ago, I logged into GoDaddy and initaited pointing the nameservers for mydomain.net to ns?.linode.com for ? = 1,2,3,4. Then I logged into linode.com and used the DNS Manager to create this record:
Code:
; mydomain.net [83760]
$TTL 86400
@ IN SOA ns1.linode.com. my_email.gmail.com. (
2010032859
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.mydomain.net.
@ MX 1 host.mydomain.net.
@ A 74.207.mmm.nnn
www A 74.207.mmm.nnn
mail A 74.207.mmm.nnn
host A 74.207.mmm.nnn
The mail.mydomain.net and
www.mydomain.net records got updated pretty quickly (less than an hour) and a few hours later the bare subdomain 'mydomain.net' was also being served by Linode's DNS. I verified this with dig and ping.
But! A day later, host.mydomain.net remains invisible. Here is what dig says:
Code:
root@host:~# dig host
; <<>> DiG 9.6.1-P1 <<>> host
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NXDOMAIN, id: 51563
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0
;; QUESTION SECTION:
;host. IN A
;; AUTHORITY SECTION:
. 86400 IN SOA a.root-servers.net. nstld.verisign-grs.com. 2010032800 1800 900 604800 86400
;; Query time: 105 msec
;; SERVER: 74.207.241.5#53(74.207.241.5)
;; WHEN: Sun Mar 28 11:49:59 2010
;; MSG SIZE rcvd: 100
Again, I have redacted my true hostname as 'host'.
Incidentally, I have two MX records becasue (1) I already had one from GoDaddy and (2) I created another one after following the (As an aside, I currently do not have reverse ARP for this host because... Linode.com obviously does not see the A record for host any better than dig does...which is to say not at all yet.)
I'm guessing I have waited long enough for the DNS changes to propagate.
The only thing that makes 'host' sprecial (compared to 'mail' or 'www') is that 'host' is the actual hostname of the linode. Is putting an actual hostname in an A record a misconfiguration?
I've been reading about DNS, but I am stuck.
Any clues will be appreciated.
Thanks![/quote]