dns를 구축하고 nslookup 211.***.**.** 하면 도메인이 나와야
할 텐데 다음과 같은 메시지가 뜹니다.
Server: [211.***.**.**]
Address: 211.***.**.**
*** 211.***.**.** can't find nslookup: Non-existent host/domain
>
어디가 잘못 설정된 것인지 알 수 없네요..
참고로 named.conf, abc.rev, abc.zone 화일들을 올립니다.
[named.conf]
// generated by named-bootconf.pl
options {
directory "/var/named";
/*
* If there is a firewall between you and nameservers you want
* to talk to, you might need to uncomment the query-source
* directive below. Previous versions of BIND always asked
* questions using port 53, but BIND 8.1 uses an unprivileged
* port by default.
*/
// query-source address * port 53;
};
//
// a caching only nameserver config
//
zone "." {
type hint;
file "named.ca";
};
zone "0.0.127.in-addr.arpa" {
type master;
file "named.local";
};
zone "*.***.211.in-addr.arpa" IN {
type master;
file "abc.rev";
};
zone "abc.com" IN {
type master;
file "abc.zone";
};
[*.rev]
@ IN SOA abc01.abc.com. hm.abc.com.(
2000082500 ;Serial
28800 ;Refresh
3600 ;Retry
2419200 ;Expire
86400 ) ;Minimum
IN NS abc01.abc.com.
IN NS abc02.abc.com.
34 IN PTR abc01.abc.com.
35 IN PTR abc02.abc.com.
36 IN PTR abc03.abc.com.
37 IN PTR abc04.abc.com.
38 IN PTR abc05.abc.com.
39 IN PTR mail.abc.com.
40 IN PTR abc06.abc.com.
[*.zone]
@ IN SOA abc01.abc.com. hh.abc.com.(
2000082500 ;Serial
28800 ;Refresh
3600 ;Retry
2419200 ;Expire
86400 ) ;Minimum
IN NS abc01.abc.com.
IN NS abc02.abc.com.
IN MX 10 mail.abc.com.
IN A 211.***.**.**
localhost IN A 127.0.0.1
abc01 IN A 211.***.**.34
abc02 IN A 211.***.**.35
abc03 IN A 211.***.**.36
abc04 IN A 211.***.**.37
abc05 IN A 211.***.**.38
mail IN A 211.***.**.39
abc06 IN A 211.***.**.40
www IN A 211.***.**.35--이 곳에 서명을 적어주십시오