I am installing this on Ubuntu 6.10 This is the error;
Quote:
DNS ERROR - none of the MX records for brittain.com
resolve to this host
It is suggested that the MX record resolve to this host
Re-Enter domain name? [Yes]
|
I did follow this post closely
Ubuntu install
Here is all the files that I have created/changed; /etc/bind/named.conf.local
Quote:
zone "mail.brittain.com" {
type master;
file "/etc/bind/zones/mail.brittain.com.db";
};
|
/etc/bind/zones/mail.brittain.com.db
Quote:
; mail.brittain.com
$TTL 604800
@ IN SOA ns.mail.brittain.com. root.mail.brittain.com. (
2007022602
28800
3600
604800
38400
);
@ IN NS ns
IN MX 10 mail
IN A 192.168.1.200
ns IN A 192.168.1.200
mail IN A 192.168.1.200
email IN A 192.168.1.200
root IN A 192.168.1.200
|
/etc/bind/named.conf.options
Quote:
forwarders {
24.196.64.53;
24.159.193.40;
};
|
/etc/resolve.conf
Quote:
search mail.brittain.com
nameserver 192.169.1.200
nameserver 24.196.64.53
nameserver 68.115.71.53
nameserver 24.159.193.40
|
/etc/hosts
Quote:
127.0.0.1 localhost
192.168.1.200 mail.brittain.com mail
# 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
|
/etc/named.conf
Quote:
options {
directory "/var/named";
dump-file "/var/named/data/cache_dump.db";
statistics-file "/var/named/data/named_stats.txt";
};
include "/etc/rndc.key";
zone brittain.com {
type master;
file "/var/named/data/brittain.com";
};
|
/var/named/data/brittain.com
Quote:
$TTL 3D @ IN SOA mail.brittain.com. mail.brittain.com. (
2005110200
8H ; refresh, seconds
2H ; retry, seconds
4W ; expire, seconds
1D ) ; minimum, seconds
NS mail ; Inet Address of name server
MX 10 mail.brittain.com. ; Primary Mail Exchanger
mail A 192.168.1.200
mail IN CNAME mail ; CNAME for a common nickname
otherhost IN A 192.168.1.200 ; another host, for example
www IN CNAME otherhost ; with a nickname
|
Please help.