Всем привет :)
У меня есть проблема с BIND 9.5.1-P1
Проблема в следующие, набераю команду debian:~# named-checkzone huli.su /etc/bind/main_config/db.huli.su
Результат:
/etc/bind/main_config/db.huli.su:19: unknown RR type 'mail'
/etc/bind/main_config/db.huli.su:20: unknown RR type 'n1'
/etc/bind/main_config/db.huli.su:21: unknown RR type 'localhost'
/etc/bind/main_config/db.huli.su:22: unknown RR type 'forum'
zone huli.su/IN: loading from master file /etc/bind/main_config/db.huli.su failed: unknown class/type
Я так понимаю должно появится типа serial — 4 ок; ?
Так что у меня есть, на борту.
1 ОС Debian
2 есть реальны IP, он будет работать как master
3 вот эти сервера будут использоваться как slave 'ns2.zoneedit.com.;ns13.zoneedit.com.; n1.huli.su.;
ns0.xname.org.; ns1.xname.org.;'
4 Это Config File
debian:/etc/bind/main_config# cat -n db.huli.su
1 ; моя зона
2 $ORIGIN huli.su.
3 $TTL 3h
4 @ 1D IN SOA n1.huli.su. mail.huli.su. (
5 112
6 3h
7 1h
8 1w
9 1h)
10
11
12 IN NS ns2.zoneedit.com.;
13 IN NS ns13.zoneedit.com.;
14 IN NS n1.huli.su.;
15 IN NS ns0.xname.org.;
16 IN NS ns1.xname.org.;
17
18
19 mail IN A 62.192.241.5;
20 n1 IN A 62.192.241.5;
21 localhost IN A 192.168.0.121;
22 forum IN A 62.192.241.5;
23
24
25
debian:/etc/bind/main_config# cat -n db.huli.62.192.241.5
1 ; моя зона
2 $ORIGIN huli.su.
3 $TTL 3h
4 @ 1D IN SOA n1.huli.su. mail.huli.su. (
5 112
6 3h
7 1h
8 1w
9 1h)
10
11 226.158.72.69.in-addr.arpa. IN NS ns2.zoneedit.com.
12 121.40.223.66.in-addr.arpa. IN NS ns13.zoneedit.com.;
13 5 IN NS ns1.huli.su.
14
15 5 IN PTR mail.huli.su.
16 5 IN PTR forum.huli.su.
17 5 IN PTR ns1.huli.su.
18
19 226.158.72.69.in-addr.arpa. IN PTR ns2.zoneedit.com.
20 121.40.223.66.in-addr.arpa. IN PTR ns13.zoneedit.com.
21 64.64.191.88.in-addr.arpa. IN PTR ns1.xname.org.
1 $TTL 3h
2 $ORIGIN huli.su.
3 @ 1D IN SOA n1.huli.su. mail.huli.su. (
4 112
5 3h
6 1h
7 1w
8 1h)
9
10 0.0.127.in-addr.arpa. IN NS ns1.huli.su.
11 1.0.0.127.in-addr.arpa. IN PTR localhost.
1 // This is the primary configuration file for the BIND DNS server named.
2 //
3 // Please read /usr/share/doc/bind9/README.Debian.gz for information on the
4 // structure of BIND configuration files in Debian, *BEFORE* you customize
5 // this configuration file.
6 //
7 // If you are just adding zones, please do that in /etc/bind/named.conf.local
8
9 //include "/etc/bind/named.conf.options";
10
11 // prime the server with knowledge of the root servers
12
13
14 // be authoritative for the localhost forward and reverse zones, and for
15 // broadcast zones as per RFC 1912
16
17 options {
18 directory "/etc/bind/"; // Working directory
19
20 allow-query-cache { none; }; // Do not allow access to cache
21 allow-query { any; }; // This is the default
22 recursion no; // Do not provide recursive service
23 };
24
25 zone "huli.su" IN{
26 type master;
27 file "/etc/bind/main_config/db.huli.su";
28 allow-transfer {87.98.164.164; 195.234.42.1;69.72.158.226;66.223.40.121; };
29
30
31 };
32
33 zone "n1.huli.su" IN{
34 type master;
35 file "/etc/bind/main_config/db.ns1.huli.su";
36
37 };
38 zone "241.192.62.in-addr.arpa" IN {
39 type master;
40 file "/etc/bind/main_config/db.huli.62.192.241.5";
41 allow-update { none;};
42 allow-query { any; } ;
43 notify yes;
44 allow-transfer {87.98.164.164; 195.234.42.1;69.72.158.226;66.223.40.121; };
45
46 };
47
48
49
50
51
52
53 zone "." IN {
54 type hint;
55 file "/etc/bind/main_config/db.cache";
56 };
57 zone "0.0.127.in-addr.arpa" {
58 type master;
59 file "/etc/bind/main_config/db.127.0.0.0";
60 };
61
62
63 //include "/etc/bind/named.conf.local";
Много что тут делал. Ну не как не проходит. Может кто знает как это исправить?