gethostbyaddr() 실패 이유를 모르겠네요.

wmcst의 이미지

OS는 fedora core4 쓰고 있습니다.
ip를 도메인 네임으로 바꾸는 간단한 소켓 플밍 예제인데요..
Unknown Host라고 나오면서 도메인 네임으로 못 바꿔주네요.
도메인 네임을 ip로 바꾸는 건 잘 되는데 말이죠..gethostbyname()은 잘됨.
nslookup도 잘 됩니다.

/etc/host.conf는 order hosts, bind로 되어있구요.
/etc/resolv.conf는 KT DNS로 되어있습니다.
DNS를 다른데로 바꿔도 문제가 해결되지는 않구요.

ip를 도메인 네임으로 못 바꾸는건 어디가 문제가 있는걸까요?
도움 바랍니다..

아래는 실행파일의 예제 소스입니다.
#include
#include
#include
#include
#include

void error_handling(char *message);

int main(int argc, char **argv)
{
struct hostent *host;
struct sockaddr_in addr;
int i;

if(argc != 2){
printf("Usage : %s \n", argv[0]);
exit(1);
}

memset(&addr, 0, sizeof(addr));
addr.sin_addr.s_addr = inet_addr(argv[1]);

host = gethostbyaddr((char*)&addr.sin_addr, 4, AF_INET);
if(!host){
fprintf(stderr, "%s\n", hstrerror(h_errno));
error_handling("gethostbyaddr... error");
}
printf("Officially name : %s \n\n", host->h_name);

puts("Aliases----------------");
for( i = 0; host->h_aliases[i]; i++)
{
puts(host->h_addr_list[i]);
}
printf("Address Type : %s \n", host->h_addrtype == AF_INET? "AF_INET" : "AF_INET6");
puts("IP Address---------------");
for( i = 0; host->h_addr_list[i]; i++){
puts(inet_ntoa( *(struct in_addr*)host->h_addr_list[i]));
}
return 0;

}
void error_handling(char *message)
{
fputs(message, stderr);
fputc('\n', stderr);

IDNed의 이미지

윈도우 소켓밖에 안해서 에러코드를 잘 모르겠는데 -_-
Windows에서도 같은 현상이 일어납니다.
개인적으로는 역방향DNS질의(IP->DNS) 지원이 안되는 시스템이라 추측했는데...
WinSock에서는 WSAGetLastError시 WSANO_DATA 에러로 뜹니다.

거의 대부분 이런 식으로 뜨지만 가끔 가다 뜨더군요 :)
예를 들면 www.meebo.com의 IP인 69.36.226.134를 쳐보세요.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.