초보입니다.
제 IP는 유동인데 211.214.114.104입니다.
(DHCP 로 IP를 받습니다.)
컴 내부에서 네임서버 테스트를 하려고 아래처럼 설정 후
named restart 했는데 계속 SERVFAIL이 나옵니다.
좀 봐주세요..부탁합니다.보름 째...
resolv.conf입니다.
/////////////////////////////////////////////
search localdomain
nameserver 211.214.114.104
///////////////////////////////////////////////////
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 "." 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; };
};
key "key" {
algorithm hmac-md5;
secret "deB0UHiagwKUsz0LCra0MNtIYtpCYpSjzTXkpkxKNfKnwJSsrLxwPh0PuwUl";
};
zone "test111.com" IN {
type master;
file "test111.zone";
allow-update { none; };
};
zone "114.214.211.in-addr.arpa" IN {
type master;
file "test111.rev";
allow-update { none; };
};
///////////////////////////////////////////////////
test111.zone입니다.
///////////////////////////////////////////////////
$TTL 86400
@ IN SOA ns.test111.com. top.test111.com. (
1 ; serial
43200 ; Refresh
3600 ; Retry
43200 ; Expire
3600 ) ; TTL
IN NS ns.test111.com.
@ IN A 211.214.114.104
www IN A 211.214.114.104
///////////////////////////////////////////////////
test111.rev입니다.
///////////////////////////////////////////////////
$TTL 86400
@ IN SOA ns.test111.com. top.test111.com. (
1 ; Serial
28800 ; Refresh
14400 ; Retry
3600000 ; Expire
86400 ) ; TTL
IN NS ns.test111.com.
104 IN PTR @
104 IN PTR www.test111.com.
////////////////////////////////////////////////////////
읽어주셔서 감사합니다..도와주세요,,