dns가 제대로 되질 않습니다.
매번 도움만 얻고가는 초보입니다...
dns서버를 구축하는데..
처음인지라 잘 모르는것도 있고 개념도 잘 안잡혀서 힘들군요.
여러 문서와 글들을 참고 했지만 잘 되지 않아 이렇게 질문 드립니다.
호스트웨이에서 mplustec.com 이라는 도메인을 대행으로구입했습니다.
그래서 자체 dns를 돌리기 위해
제가 가지고 있는 서버의 주소로 변경을 했고 네임서버 이름을 ns.mplustec.com이라고 했습니다.
dns와 웹서버를 같이 돌리려 합니다.
현재 메일 서버를 구축해야 하는데 dns때문에 죽겠군요..ㅜㅜ
----nemed.comf
xxx.xxx.xxx.xxx 제 서버의 아이피입니다.
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
*directivre below. Previous versions of BIND 8.1 uses an unprivileged
*port by default.
*/
//query-source address * port 53;
};
//a cashing 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 "mplustec.com" IN {
type master;
file "mplustec.com.zone";
allow-update { none; };
};
zone "xxx.xxx.xxx.in-addr.arpa" IN {
type master;
file "xxx.xxx.xxx.reverse";
allow-update { none; };
};
include "/etc/rndc.key";
----mplustec.com.zone
$TTL 86400
@ IN SOA ns.mplustec.com. master.mplustec.com. (
2006050100 ; Serial
28800 ; Refresh
14400 ; Retry
3600000 ; Expire
86400 ) ; Minimum
IN NS ns.mplustec.com.
IN NS ns.siteprotect.co.kr.
IN MX 10 mail.mplustec.com.
@ IN A xxx.xxx.xxx.xxx
www IN A xxx.xxx.xxx.xxx
mail IN A xxx.xxx.xxx.xxx
-----------xxx.xxx.xxx.reverse
$TTL 86400
@ IN SOA ns.mplustec.com. master.mplustec.com. (
2006050800 ; Serial
28800 ; Refresh
14400 ; Retry
3600000 ; Expire
86400 ) ; Minimum
;
IN NS ns.mplustec.com.
IN NS ns.siteprotect.co.kr.
;
175 IN PTR mplustec.com.
175 IN PTR www.mplustec.com.
175 IN PTR mail.mplustec.com.
-----------etc/resolv.conf
search ns.mplustec.com mplustec.com www.mplustec.com
nameserver 127.0.0.1
nameserver xxx.xxx.xxx.xxx
서버에서
nslookup mplustec.com
을 하면
Server: 127.0.0.1
Address: 127.0.0.1#53
Name: mplustec.com
Address: xxx.xxx.xxx.xxx
으로 출력이 됩니다.
그런데 외부에서 하면 server failed 가 뜨네요.
외부에선 핑도 가질 않습니다...
그런데 웹서버는 돌아가서 그런지
아이피로 접속을 하면 잘 됩니다.
대체 무엇이 문제인지를 잘 모르겠습니다.
고수분들의 도움 부탁드립니다.
잘 되는데요?
Default Server: ns.cjdream.net
Address: 210.181.1.24
> ns.mplustec.com
Server: ns.cjdream.net
Address: 210.181.1.24
Non-authoritative answer:
Name: ns.mplustec.com
Address: 221.133.133.175
> server ns.mplustec.com
Default Server: ns.mplustec.com
Address: 221.133.133.175
> www.nate.com
Server: ns.mplustec.com
Address: 221.133.133.175
Non-authoritative answer:
Name: www.nate.com
Address: 203.226.255.16
> exit
----------------------------------------------------------------------------------------------------
Rina's Blog
http://rinapc.com
이상하네요..
어느곳에선 되고 어느곳에선 안되는건지..ㅡㅜ
알수가 없네요..ㅜㅜ
답변 감사합니다..
ns.mplustec.com A 레코드가 없네요.
mplustec.com.zone 에 ns IN A xxx.xxx.xxx.xx 추가하세요.
댓글 달기