I've done everything as directed in the Bind DNS setup from the wiki (
Split DNS - ZimbraWiki )
but I can't get bind to run.
I get the following error:
Quote:
Starting named:
Error in named configuration:
zone mail.mydomain.com/IN: loading master file db.mail.mydomain.com: file not found
_default/mail.mydomain.com/IN: file not found
[FAILED]
|
Based on the instructions, I setup my /etc/named.conf file with:
Code:
// Default named.conf generated by install of bind-9.2.4-2
options {
directory "/var/named";
dump-file "/var/named/data/cache_dump.db";
statistics-file "/var/named/data/named_stats.txt";
forwarders { ; };
};
include "/etc/rndc.key";
// We are the master server for mail.mydomain.com
zone "mail.mydomain.com" {
type master;
file "db.mail.mydomain.com";
}; and I created the db.mail.mydomain.com file with:
Code:
;
; Addresses and other host information.
;
@ IN SOA mail.mydomain.com. hostmaster.mail.mydomain.com. (
10118 ; Serial
43200 ; Refresh
3600 ; Retry
3600000 ; Expire
2592000 ) ; Minimum
; Define the nameservers and the mail servers
IN NS 192.168.26.39
IN A 192.168.26.39
IN MX 10 mail.mydomain.com
I also created all symlinks into the chroot folders.
I am stuck with:
Quote:
Starting named:
Error in named configuration:
zone mail.mydomain.com/IN: loading master file db.mail.mydomain.com: file not found
_default/mail.mydomain.com/IN: file not found
[FAILED]
|
I don't know if you can help me with the bind problem. I'd appreciate any input. Thanks!