I'm trying to install bind and zimbra on a VM. I believe that have have both of them installed correctly, however when I do an 'nslookup' I get the following message.
[root@XXXX named]# nslookup mail.XXXXX.net Server: 192.168.127.209 Address: 192.168.127.209#53
*** Can't find mail.XXXXX.net: No answer
Here is my resolv.conf
nameserver 192.168.127.209 <---The IP of the server I'm trying to setup
Here is my named.conf
options {
directory "/var/named";
dump-file "/var/named/data/cache_dump.db";
statistics-file "/var/named/data/named_stats.txt";
forwarders { 8.8.8.8; }; };
zone "." {
type hint;
file "/etc/db.cache"; };
include "/etc/rndc.key";
zone "XXXXX.net" {
type master;
file "/var/named/xxxxx"; };
And here is my zone configuration file (/var/named/"xxxxx")
; Addresses and other host information. ;
XXXXX.net. IN SOA mail.XXXXX.net. hostmaster.XXXXX.net. (
10118 ; Serial 43200 ; Refresh 3600 ; Retry 3600000 ; Expire 2592000 ) ; Minimum; Define the nameservers and the mail servers
IN NS 192.168.127.209 IN A 192.168.127.209 IN MX 10 mail.XXXXX.net.mail.XXXXX.net. IN A 192.168.127.209
Any help would be greatly appreciated.