named 설정 한거좀 봐주세요...
작성자 정보
- DNS 작성
- 작성일
컨텐츠 정보
- 2,442 조회
- 2 댓글
- 0 추천
- 목록
본문
우선 /etc/named.conf 입니다.
// generated by named-bootconf.ploptions {
directory "/var/named";
/*
* If there is a firewall between .........생략
};
//
// a cashing .... 생략
//
contrils {
inet 127.0.0.1 allow { localhost; } keys { rndkey; };
};
zone "." IN {
type hint;
file "named.ca";
};
zone "test12.skin.com" IN {
type master;
file "test12.skin.com.zone";
allow-update { none; };
};
zone "12.16.172.in-addr.arpa" IN {
type master
file "test12.skin.com.rev";
allow-update { none; };
};
include "/etc/rndc.key";
다음엔
test12.skin.com.zone 입니다.(/var/named 에 있는 localhost.zone 을 편집 했습니다.)
IN SOA ns.test12.skin.com. root.test12.skin.com. (
42 ; serial (d. adams)
3H ; refresh
15M ; retry
1W ; expiry
1D ) ; minimum
IN NS ns.test12.skin.com.
IN A 172.16.12.10
ns IN A 172.16.12.10
www IN A 172.16.12.10
ftp IN CNAME www
@ IN A 172.16.12.10
그 다음엔 test12.skin.com.rev 입니다.
$TTL 86400
@ IN SOA ns.test12.skin.com. root.test12.skin.com. (
1997022700 ; Serial
28800 ; Refresh
14400 ; Retry
3600000 ; Expire
86400 ; Minimum
1 IN PTR www.test12.skin.com.
1 IN PTR ftp.net12.skin.com.
대충 이러고 named 서비스 실행 하고 nslookup test12.skin.com 하니깐 안되네요 ㅜ
위에꺼 열심히 일일히 쳤답니다.. 좀 무식허게 ;;;
좀 봐주심이 ... 레드햇 9.0 입니다.
관련자료
-
이전
-
다음
쉼쉼이님의 댓글
- 쉼쉼이
- 작성일
controls { 이렇게 고쳐주세요
임근식님의 댓글
- 임근식
- 작성일
체크하실 것을 권장합니다. (이유: 사람이 환경파일을 점검하면
아무래도 컴퓨터보다 불확실합니다. ^^)