네임서버 설치에 어려움을 격고 있습니다.
네임서버를 설치하고 셋팅하였습니다.
서버내부에서는 ping,nslookup,host 로 나오는데 외부에서는 안되네요.
하루가 지났지만 그래두 안됩니다.
원본소스가 좀 길지만 좀 봐주세요.
인터넷진흥원에서 DNS를 점검한결과
--------------------------------------------------------------------------------
각 네임서버에 기록된 네임서버 정보 : 조회 대상 서버 : < ns1.kkcu.or.kr.>
네임서버가 모두 DNS SW를 운영 : DNS SW 운영를 운영하고 있는 네임서버가 없습니다
--------------------------------------------------------------------------------
이런 결과가 나왔네요.뭐가 문제인지 모르겠습니다.
#### 네임서버 configuration ####
CFLAGS="-O2 -march=i686 -funroll-loops"; export CFLAGS
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--mandir=/usr/share/man \
--with-openssl \
--with-libtool \
--disable-ipv6
#### 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
//
controls {
inet 127.0.0.1 allow { localhost; } keys { rndckey; };
};
zone "." IN {
type hint;
file "named.ca";
};
zone "localhost" IN {
type master;
file "localhost.zone";
allow-update { none; };
};
zone "0.0.127.in-addr.arpa" IN {
type master;
file "named.local";
allow-update { none; };
};
zone "kkcu.or.kr" IN {
type master;
file "kkcu.or.kr.zone";
allow-update { none; };
};
zone "18.189.211.in-addr.arpa" {
type master;
file "kkcu.or.kr.zone.rev";
};
include "/etc/rndc.key";
#### rndc.conf ####
options {
default-server localhost;
default-key "rndckey";
};
server localhost {
key "rndckey";
};
include "/etc/rndc.key";
#### rndc.key ####
key "rndckey" {
algorithm hmac-md5;
secret "c3Ryb25nIGVub3VnaCBmb3IgYSBtYW4gYnV0IG1hZGUgZm9yIGEgd29tYW4K";
};
#### resolv.conf ####
domain kkcu.or.kr
search kkcu.or.kr
nameserver 211.189.18.49
#### host.conf ####
order hosts,bind
multi on
nospoof on
#### hosts ####
127.0.0.1 localhost localhost.localdomain
211.189.18.49 ns1 kkcu.or.kr
211.189.18.49 www kkcu.or.kr
#### kkcu.or.kr.zone ####
$TTL 0
@ IN SOA ns1.kkcu.or.kr. admin.kkcu.or.kr. (
2005062901 ;Serial
21600 ;Refresh ( 6 hours)
1800 ;Retry (30 minutes)
1209600 ;Expire (14 days)
86400) ;Minimum ( 1 day)
IN NS ns1.kkcu.or.kr.
@ IN A 211.189.18.49
ns1 IN A 211.189.18.49
* IN A 211.189.18.49
www IN A 211.189.18.49
#### kkcu.or.kr.zone.rev ####
$TTL 0
@ IN SOA ns1.kkcu.or.kr. admin.kkcu.or.kr. (
2005062901 ;Serial
21600 ;Refresh ( 6 hours)
1800 ;Retry (30 minutes)
1209600 ;Expire (14 days)
86400) ;Minimum ( 1 day)
IN NS ns1.kkcu.or.kr.
@ IN A 211.189.18.49
ns1 IN A 211.189.18.49
* IN A 211.189.18.49
www IN A 211.189.18.49


댓글 달기