BIND A Record propogation problems
Hey guys,
I'm having problems with my A records for my domain heyretard.org propogating to the root servers. Here are the related files:
named.conf
Code:
// Config file for caching only name server
//
// The version of the HOWTO you read may contain leading spaces
// (spaces in front of the characters on these lines ) in this and
// other files. You must remove them for things to work.
//
// Note that the filenames and directory names may differ, the
// ultimate contents of should be quite similar though.
options {
directory "/var/named";
listen-on { 209.113.190.141; 127.0.0.1; };
// Uncommenting this might help if you have to go through a
// firewall and things are not working out. But you probably
// need to talk to your firewall admin.
// query-source port 53;
pid-file "/var/run/named/named.pid";
};
controls {
inet 127.0.0.1 allow { localhost; } keys { rndc_key; };
};
key "rndc_key" {
algorithm hmac-md5;
secret "c3Ryb25nIGVub3VnaCBmb3IgYSBtYW4gYnV0IG1hZGUgZm9yIGEgd29tYW4K";
};
zone "." {
type hint;
file "root.hints";
};
zone "0.0.127.in-addr.arpa" {
type master;
file "pz/127.0.0";
};
zone "heyretard.org" {
type master;
//notify no;
file "pz/heyretard.org";
};
// Reverse Zone Info
zone "190.113.209.in-addr.arpa" {
type master;
notify no;
file "pz/209.113.190";
};
heyretard.org zone file - I'm uncertain in this file if I can have multiple A records for the same IP? For instance ftp.heyretard.org, mail.heyretard.org, and www.heyretard.org all point to the same IP.
In the reverse zone I can only have one PTR record I believe. I tried to have more than one but when I ping the IP i get replies from ftp, mail, ns1, etc.
Code:
;
; Zone file for heyretard.org!
;
; The full zone file
;
$TTL 3D
@ IN SOA ns1.heyretard.org. postmaster.heyretard.org. (
2004101503 ; serial, todays date + todays serial #
3600 ; refresh, seconds
2H ; retry, seconds
4W ; expire, seconds
1D ) ; minimum, seconds
;
TXT "Heyretard.org, you're a retarded retard!"
NS ns1 ; Inet Address of name server
MX 10 mail.heyretard.org. ; Primary Mail Exchanger
; MX 20 mailman.heyretard.org.; Secondary Mail Exchanger
;
localhost A 127.0.0.1
ns1 A 209.113.190.141
heyretard.org. A 209.113.190.141
www A 209.113.190.141
mail CNAME ns1
ftp CNAME ns1
My reverse lookup zone
Code:
$TTL 3D
@ IN SOA ns1.heyretard.org. hostmaster.heyretard.org. (
2004101802 ; Serial, todays date + todays serial
3600 ; Refresh
2H ; Retry
4W ; Expire
1D ; Minimum TTL
)
IN NS ns1.heyretard.org.
141 IN PTR www.heyretard.org.
;141 PTR ftp.heyretard.org.
Any help is GREATLY appreciated! I'll be harassing the usual suspects on IRC tonight over this... :twisted: