Ребята, помогите разобраться. Обратная зона работает, а остальное нет
cat /etc/bind/named.conf.local
//
// 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 "nikitin.loc" {
type master;
file "/etc/bind/db.nikitin.loc";
//allow-transfer {127.0.0.1; };
};
zone "0.168.192.in-addr.arpa" {
type master;
file "/etc/bind/db.192";
};
cat /etc/bind/db.nikitin.loc
;
; BIND data file for local loopback interface
;
$TTL 604800
@ IN SOA ns.nikitin.loc. root.nikitin.loc. (
10 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS 192.168.0.1
ns IN A 192.168.0.1
mirror IN A 192.168.0.2
www IN CNAME mirror.nikitin.loc
mail IN CNAME mirror.nikitin.loc
cat /etc/bind/db.192
;
; BIND reverse data file for local 192.168.0.XXX net
;
$TTL 604800
@ IN SOA ns.nikitin.loc. root.nikitin.loc. (
2 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS ns.
1 IN PTR ns.nikitin.loc.
2 IN PTR mirror.nikitin.loc.