I'm following this guide: Ubuntu 6.06 Server (Dapper Drake) Beginner's Install Guide - Zimbra :: Wiki
but when I restart my computer after edit /etc/bind/db.mydomain.com
bind doesn't start
Starting domain name service...: bind failed!
this is my configuration
/etc/bind a simple dir
Code:
db.0 db.255 db.local db.ucisa.pe named.conf.local rndc.key
db.127 db.empty db.root named.conf named.conf.options zones.rfc1918
in named.conf.local I did exactly as the guide says so this is what I have
Code:
//
// Do any local configuration here
//
// Consider adding the 1918 zones here, if they are not used in your
// organization
//include "/etc/bind/zones.rfc1918";
zone "ucisa.pe" {
type master;
file "/etc/bind/db.ucisa.pe";
} so in db.ucisa.pe I have these exactly as the guide says but with my domain
Code:
;
; BIND data file for local loopback interface
;
$TTL 604800
@ IN SOA debian.ucisa.pe. admin.ucisa.pe. (
27028917 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS debian
IN MX 10 debian
IN A 192.168.1.106
debian IN A 192.168.1.106 when computer is booting it says
Starting domain name service...: bind failed!
when I commented these lines on named.conf.local
//zone "ucisa.pe" {
// type master;
// file "/etc/bind/db.ucisa.pe";
//}
bind starts normally
I'm stuck
what should I do? is the guide wrong?
pd: I didn't touch the file named.conf
at the last part of named.conf it says:
include "/etc/bind/named.conf.local";
please I need backup 
pd2: debian is the name of my computer.