소켓 프로그래밍에서 도메인 입력시 IP얻는 방법?

skylandi의 이미지

소켓 프로그래밍에서 도메인 입력시 IP얻는 방법좀 가르쳐 주세요.

리눅스에서는 gethostbyname()함수를 사용해서 /ect/reso??? 파일에 있는 내용을 가져 온다고 아는데

윈도우용 nt서버 가동하고 있는 서버의 아이피를 가져오는 방법은 없나요?

[질문이 해롱대롱 죄송]

좋은 하루 되세요

동쪽하늘의 이미지

호스트 네임으로 ip를 얻는 것은

서버의 종류에 무관하지 않나요-_-*?)

#include <netdb.h>
#include <sys/types.h>
#include <netinet/in.h>

int main(int argc, char *argv[]) {
        struct hostent *h;

        if (argc != 2) {
                fprintf(stderr, "usage: getip addr\n");
                exit(1);
        }

        if ((h=gethostbyname(argv[1])) == NULL) {
                herror("gethostbyname");
                exit(1);
        }

        printf("Host name : %s\n", h->h_name);
        printf("IP Address: %s\n", inet_ntoa(*((struct in_addr *)h->h_addr)));

        return 0;
}

즉, gethostbyname()을 이용한 위의 코드는 리눅스에서 동작하지만
윈도우즈 NT서버의 아이피도 가져올 수 있습니다...

$ ./getip bbs.kldp.org
Host name : bbs.kldp.org
IP Address: 211.39.143.146

$ ./getip www.microsoft.com
Host name : www.microsoft.akadns.net
IP Address: 207.46.249.190

sandro의 이미지

8)

멀티쓰레딩일때는 gethostbyname 을 사용하면 안되겠죠.

gethostbyname_r 을 사용해야 합니다.

주의하세요.

無心

webrobot의 이미지

플랫폼 관계없이 getbyhostname()함수는 먹힐겁니다.
다만 질문내용에는 없지만 혹시나 이런것을 물으려고 했던건 아닌지 싶어 답변드린다면 getbyhostname()으로 얻지 못하는 ip를 얻는 방법은 dns로 request를 보내는 방법이 있다는 겁니다.

예를 들어, 메일 발송기를 만든다고 칩시다.
요즘은 보안문제와 스팸메일문제로 메일서버의 릴레이기능을 지원하지 않습니다.
그러나 자동 메일 발송을 할때에 특정 메일서버로 smtp 프로토콜을 전달할 필요가 있게 됩니다.
물론 자신의 smtp 서버를 활용하는 방법이 있습니다만 그렇게 되면 당근 자신이 노출되겠죠..
따라서 xxx@xxx.com 으로 메일을 발송하려고 한다면 자신의 smtp 서버로 전송을 의뢰하기 보단 xxx.com 이라는 도메인의 메일서버에게 요청을 하는 것이 좋겠죠.
그렇다면 대체 xxx.com의 메일서버 ip는 어떻게 알 수 있을까요?
물론 getbyhostname()으로 얻는 정보는 일반적인 ip일 것이고 다행히 메일서버 ip와 동시에 사용된다면 좋겠지만 일반적으로 메일서버는 다른 서버로 운영하기 때문에 알수가 없죠.
이경우 dns서버에게 요청하는 방법외에는 없습니다.
dns서버에 대한 요청은 여러문서를 참조해 보셔도 좋고 또한 공개되어 있는 라이브러리도 꽤 많습니다.

흠.. 이 외에 더 좋은 방법이 있나요?
그럼 리플달아주세요.

webrobot@hotmail.com
http://www.webrobot.org
-------------------------------------------------
Network is the very operating system.

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.