서버를 구축해볼려구 두루넷에서 고정ip를 받았거든요.(210.94.92.222)
도메인도 신청했어요.safetyi.net 1차네임서버 210.94.92.222로요
그리고는 /etc/resolv.conf
serach ns.thrunet.com ns2.thrunet.com ;두루넷 dns
nameserver 210.117.65.1
nameserver 210.117.65.2
했는데 이게 맞는 건가요.. 인터넷은 되거든요..
근데 nslookup을 하면
server 210.117.65.1
address 210.117.65.1#53
라고 나오거든요...
--------------- /etc/named.conf ---------------
controls {
inet 127.0.0.1 allow { localhost; } keys { rndckey; };
};
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; };
};
zone "safetyi.net" IN {
type master;
file "zone-safetyi.net";
allow-update { none; };
};
zone "92.94.210.in-addr.arpa" IN {
type master;
file "zone-92.94.210";
allow-update { none; };
};
include "/etc/rndc.key";
---------------- /var/named/zone-safetyi.net --------------
$TTL 86400
@ 1D IN SOA ns.safetyi.net. takos.thrunet.com. (
42 ; serial (d. adams)
3H ; refresh
15M ; retry
1W ; expiry
1D ) ; minimum
1D IN NS ns.safetyi.net.
1D IN MX 10 mail.safetyi.net.
@ 1D IN A 210.94.92.222
IN HINFO "x86 Pentium" "RedHat 7.2"
gateway 1D IN A 210.94.92.221
ns 1D IN A 210.94.92.222
mail 1D IN A 210.94.92.222
www 1D IN A 210.94.92.222
ftp 1D IN A 210.94.92.222
---------------- /var/named/zone-92.94.210 --------------
$TTL 86400
@ IN SOA ns.safetyi.net. takos.thrunet.com. (
1997022700 ; Serial
28800 ; Refresh
14400 ; Retry
3600000 ; Expire
86400 ) ; Minimum
IN NS ns.safetyi.net.
221 IN PTR gateway
222 IN PTR www
222 IN PTR mail
222 IN PTR ftp
----------------------------------------------------
[root@liunx root]# nslookup safetyi.net
Note: nslookup is deprecated and may be removed from future releases.
Consider using the `dig' or `host' programs instead. Run nslookup with
the `-sil[ent]' option to prevent this message from appearing.
Server: 210.117.65.1
Address: 210.117.65.1#53
** server can't find safetyi.net.: SERVFAIL
-----------------------------------------------------
[root@liunx root]# nslookup 210.94.92.222
Note: nslookup is deprecated and may be removed from future releases.
Consider using the `dig' or `host' programs instead. Run nslookup with
the `-sil[ent]' option to prevent this message from appearing.
Server: 210.117.65.1
Address: 210.117.65.1#53
Non-authoritative answer:
222.92.94.210.in-addr.arpa name = s210-94-92-222.thrunet.ne.kr.
Authoritative answers can be found from:
92.94.210.in-addr.arpa nameserver = ns.thrunet.com.
92.94.210.in-addr.arpa nameserver = ns2.thrunet.com.
ns.thrunet.com internet address = 210.117.65.100
ns2.thrunet.com internet address = 210.117.65.2
뭔가 제대로 되지 않은것 같은데 혹시 두루넷이라 그런가요..
어째든 아파치까지 설치해서 servername 에 당당히 www.safetyi.net이라고 적어주고 네스케이프에
서 210.94.92.222라고 치니까 문서가 뜨거든요.. 하지만 이것도 외부에서는 되지가 않네요.. 같
은 랜에서만 되고요.. 그리고 www.safetyi.net이라고 치니까 물론 안되고요..
저는 두루넷고정ip(210.94.92.222)로 linux에서 www.safetyi.net을 웹서버를 구축하고 싶습니다. 이
게 불가능한건가요... 고수님들의 조언을 부탁드립니다.