: 첫번째, 두번째 네임서버 자체를 못찾는걸로 봐서
: 아예 DNS 세팅을 잘못하신듯 하네요.
:
: named.conf
: abc.com 의 zone 파일
: 리버스 zone 파일 세팅한걸 긁어서 다시 게시판에 올리시기 바랍니다.
:
: 그래야 뭘 잘못했는지 알려주던가 하지요.
name server ns2.ibi.net 210.103.175.102
ns3.ibi.net 210.103.175.103
ip 123.123.123.210
domain abc.com
[named.conf]
options {
directory "/var/named";
};
zone "." {
type hint;
file "named.ca";
};
zone "abc.com"{
type master;
file "abc.zone";
};
zone "0.0.127.in-addr.arpa"{
type master;
file "named.local";
};
zone "175.103.210.in-addr.arpa"{
type master;
file "named.rev";
};
[abc.zone]
@ IN SOA ns2.ibi.net. root.ibi.net. (
2000081401 ; serial
28800 ; refresh
14400 ; retry
3600000 ; expire
86400 ; default_ttl
)
; nameserver & mail.server
IN NS ns2.ibi.net.
IN MX 10 abc.com.
; defile local hosts
localhost IN A 127.0.0.1
@ IN A 123.123.123.210
ns IN A 123.123.123.210
mail IN A 123.123.123.210
www IN A 123.123.123.210
ftp IN A 123.123.123.210
telnet IN A 123.123.123.210
[named.rev]
@ IN SOA ns2.ibi.net. root.abc.com. (
2000081401 ; serial
28800 ; refresh
14400 ; retry
3600000 ; expire
86400 ; default_ttl
)
;Name Server
@ IN NS ns2.ibi.net.
@ IN MX 10 mail.abc.com.
;in-addr-arpa
102 IN PTR ibi.net
210 IN PTR ftp.abc.com.
알려주세요..--이 곳에 서명을 적어주십시오.
jini