네임서버 설정 했는데여...
그런데.. nslookup으로 조회하면 못찾는다고 나오네여!
[root@www /root]# vi /etc/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 "db.127.0.0";
allow-update { none; };
};
zone "70.105.210.in-addr.arpa" {
type master;
file "db.210.105.70";
allow-update { none; };
};
zone "bestseosan.com" {
type master;
file "db.*****.com";
allow-update { none; };
};
[root@www named]# vi db.*****.com
$TTL 86400
@ IN SOA ns.*****.com. root.ns.*****.com. (
2001420 ; Serial
21600 ; Refresh
900 ; Retry
610800 ; Expire
345600 ; Minimum
)
IN NS ns.*****.com.
IN A 210.105.70.***
*****.com IN MX mail.*****.com.
localhost IN A 127.0.0.1
ns IN A 210.105.70.***
www IN A 210.105.70.***
news IN A 210.105.70.***
mail IN A 210.105.70.***
[root@www named]# vi db.210.105.70
$TTL 86400
@ IN SOA localhost. root.ns.*****.com. (
2001420 ; Serial
28800 ; Refresh
14400 ; Retry
3600000 ; Expire
86400 ; Minimum
)
IN NS localhost.
*** IN PTR localhost.
[root@www named]# nslookup *****.com
Server: localhost
Address: 211.202.239.***
*** Request to localhost timed-out
nic에 도메인 네임서버는 등록 되어있구여....
왜 못찾는건지....답답하네여...
예전에는 잘 잡혔는디...
후~~~~~
알려주셔요.......!