네임서버 설정화일 올립니다..네임서버가 안되요..좀 봐주세요..

dogrice의 이미지

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 "cicit.co.kr" IN {
type master;
file "cicit.zone";
allow-update { none; };
};

zone "175.154.218.in-addr.arpa" IN {
type master;
file "cicit.rev";
allow-update { none; };
};

include "/etc/rndc.key";

-----------------------------------------------------------------------------------
zone파일입니다.
-----------------------------------------------------------------------------------
$TTL 3600
@ IN SOA ns1.cicit.co.kr. root.cicit.co.kr. (
1 ; serial (d. adams)
43200 ; refresh
3600 ; retry
43200 ; expiry
3600 ) ; minimum

IN NS ns1.cicit.co.kr.
IN NS ns2.cicit.co.kr.

@ IN A 218.154.175.31
IN MX 10 cicit.co.kr.
IN MX 20 cicit.co.kr.

www IN A 218.154.175.31
mail IN CNAME www
-----------------------------------------------------------------------------------

rev화일입니다.
-----------------------------------------------------------------------------------
$TTL 3600
@ IN SOA s1.cicit.co.kr. root.cicit.co.kr. (
1 ; Serial
43200 ; Refresh
3600 ; Retry
43200 ; Expire
3600 ) ; Minimum
IN NS ns1.cicit.co.kr.
IN NS ns2.cicit.co.kr.

31 IN PTR ns1.cicit.co.kr.
31 IN PTR www.cicit.co.kr.
31 IN PTR mail.cicit.co.kr.

pynoos의 이미지

$TTL 3600 
@ IN SOA ns1.cicit.co.kr. root.cicit.co.kr. ( 
1 ; serial (d. adams) 
43200 ; refresh 
3600 ; retry 
43200 ; expiry 
3600 ) ; minimum 

IN NS ns1.cicit.co.kr. 
IN NS ns2.cicit.co.kr. 


@ IN A 218.154.175.31 
IN MX 10 cicit.co.kr. 
IN MX 20 cicit.co.kr. 

ns1             IN A    218.154.175.31 
ns2             IN A    218.154.175.32

www IN A 218.154.175.31 
mail IN CNAME www 

ns1 IN A ~
ns2 IN A ~
에 대한 두줄이 빠져 있군요.

dogrice의 이미지

서자룡 리눅스 8.0 그대로 따라하기 책을 보고 공부하는데 그런 내용은 없군요

ns1 in a xxx.xxx.xx
ns2 in a xxx.xxx.xx

이것 반드시 해줘야 하나요?

pynoos의 이미지

NS 로 name server를 지정해놓고선..
ns1.cicit.co.kr 이 풀리지 않으면 이상하잖어요.

dogrice의 이미지

그럼..책에는 없었지만..

ns1 in a ~ 이것 없이도 네임서버는 동작하는 것인가요

아니면 이것을 안해주면 네임서버는 작동하지 않는 것인가요

pynoos의 이미지

name server 주소는, ISP 쪽에 등록이 되어 있어야합니다.

즉, ISP에서는 최소한 cicit.co.kr 에 대해
ns1.cicit.co.kr
ns2.cicit.co.kr

두개가 Nameserver 라는 사실과

ns1.cicit.co.kr 과 ns2.cicit.co.kr 에 대한 IP address 가 등록되어 있어야합니다.

제가 보기엔, 현재 cicit.co.kr 의 ns1, ns2 에 대한 IP가 ISP Nameserver에 등록 되어 있지 않군요.

물론, ISP에 도 등록되어야하고, 자신도 ns1, ns2에 대한 것도 등록되어있어야하겠죠.

dogrice의 이미지

nslookup -type-ns cicit.co.kr

요러케 하니깐
아까 보이지 않던 Non-authritative answer들이 보입니다.

cicit.co.kr nameserver=ns1.cicit.co.kr
cicit.co.kr nameserver=ns2.cicit.co.kr

요렇게요...
하지만.
authoritative answer는 아무것도 보이지 않네요..

zone영역에 A호스트 레코드로등록을 해주었음에도 불구하고 아무것도 안보이네요...

ns1.cicit.co.kr internet address =218.154.XX.XX

이렇게 나와줘야 하는데..암것도..ㅜ.ㅜ

아 그리고 ISP의 Nameserver에는 당근 등록이 되어있습니다

pynoos의 이미지

Name server를 218.154.175.31 으로 setting 하고 query 하면
다 잘보이지 않습니까?

Nameserver에 등록이 4월 3일인것으로보아.. 조금 더 기다려 보죠.

dogrice의 이미지

/etc/resolv.conf 에서
nameserver를 218.154.175.31로 해놓고
host나 nslookup으로 쿼리를 하면..다 나옵니다..

문제는 외부에서 전혀 이 컴퓨터를 네임서버로 인식을 못한다는 거에요..

며칠쨰 인지 모릅니다..

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.