dns서버설정중
nic.or.kr 등록에
2차네임서버바 있어야 된다는데
어떻게 해야 합니까
저는 ip하나만 가지고 있는데
어떻게 해야할지 모르겠군요
고쳐야 할부분도 좀 알려주세요...
### 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
//
zone "." {
type hint;
file "named.ca";
};
zone "0.0.127.in-addr.arpa" {
type master;
file "named.local";
};
//this line is maid by bj park.
zone "apap.pe.kr" {
type master;
file "domain-ip";
};
zone "16.227.227.210.in-addr.arpa" {
type master;
file "ip-domain";
};
### domain-ip 입니다.###
@ IN SOA ns.apap.pe.kr. root.apap.pe.kr. (
20001101 ;serial (yyyymmddnn)
28800 ;refresh (8 hours)
14400 ;retry (4 hours)
3600000 ;expire (41.66 day)
86400 ) ;minium (1 Day)
apap.pe.kr. IN NS ns.apap.pe.kr.
@ IN A 210.179.227.16
ns IN A 210.179.227.16
www IN CNAME ns
w3 IN CNAME ns
ftp IN CNAME ns
### ip-domain 이구요 ###
@ IN SOA ns.apap.pe.kr. root.apap.pe.kr. (
2000110100 ; Serial
28800 ; Refresh
14400 ; Retry
3600000 ; Expire
86400 ) ; Minimum
IN NS ns.apap.pe.kr.
16 IN PTR www.apap.pe.kr. 16.227.179.210 IN PTR apap.pe.kr.
### domain.local 입니다 ###
@ IN SOA localhost. root.localhost. (
2000110100 ; Serial
28800 ; Refresh
14400 ; Retry
3600000 ; Expire
86400 ) ; Minimum
IN NS localhost.
1 IN PTR localhost.
--
박병준