dns가 제대로 되질 않습니다.

force8105의 이미지

매번 도움만 얻고가는 초보입니다...
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 가 뜨네요.
외부에선 핑도 가질 않습니다...

그런데 웹서버는 돌아가서 그런지
아이피로 접속을 하면 잘 됩니다.

대체 무엇이 문제인지를 잘 모르겠습니다.
고수분들의 도움 부탁드립니다.

Rina의 이미지

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

force8105의 이미지

어느곳에선 되고 어느곳에선 안되는건지..ㅡㅜ
알수가 없네요..ㅜㅜ
답변 감사합니다..

jayp의 이미지

mplustec.com.zone 에 ns IN A xxx.xxx.xxx.xx 추가하세요.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.