小女求助,如何得到自己电脑在网络中的IP地址及端口号,谢谢帮忙

解决方案 »

  1.   

    开始,运行,cmd回车,输入ipconfig回车
      

  2.   

    上面是win2000的,win98就运行winipcfg
      

  3.   

    ip
    win98
    开始-->运行-->winipcfg
    win2000
    开始-->运行-->cmd-->ipconfig/allport
    win2000
    开始-->运行->cmd-->net stat -a
      

  4.   

    demetry(大松)说的很有道理,还是去问Gates吧。—————————————————————————————————
    ┏━★━━◆━━★━┓ 
    ♂欢|◢CSDN◣|使♂        ▲自由保存帖子,浏览,关注检测
    ┃迎|◥论坛助手◤|用┃        ▲完善的CSDN客户端工具
    ┗━☆━━◇━━━☆┛       ▲自动添加签名......让你更快,更爽,更方便地上CSDN...
    http://www.csdn.net/expert/topic/573/573604.xml
    http://www.chinaok.net/csdn/csdn.zip
      

  5.   

    我也服了!
    因该这样。
    开始-》运行-》输入cmd(Windows2000/XP)或command(Win9X)
    然后netstat -na
      

  6.   

    ////////////////////////////////////////////////////////////////
    // VCKBASE Online Journal
    //
    // getip1.cpp
    //
    // This program reports the IP address for each adapter in your machine.
    // To compile from command-line type:
    //
    // cl getip1.cpp wsock32.lib
    //
    // Make sure your INCLUDE and LIB environment variables are set up properly;
    // you can run vcvars32.bat
    //
    #include <winsock.h>
    #include <wsipx.h>
    #include <wsnwlink.h>
    #include <stdio.h>int main()
    {
    ////////////////
    // Initialize windows sockets API. Ask for version 1.1
    //
    WORD wVersionRequested = MAKEWORD(1, 1);
    WSADATA wsaData;
    if (WSAStartup(wVersionRequested, &wsaData)) {
    printf("WSAStartup failed %s\n", WSAGetLastError());
    return -1;
    } //////////////////
    // Get host name.
    //
    char hostname[256];
    int res = gethostname(hostname, sizeof(hostname));
    if (res != 0) {
    printf("Error: %u\n", WSAGetLastError());
    return -1;
    }
    printf("hostname=%s\n", hostname); ////////////////
    // Get host info for hostname. 
    //
    hostent* pHostent = gethostbyname(hostname);
    if (pHostent==NULL) {
    printf("Error: %u\n", WSAGetLastError());
    return -1;
    } //////////////////
    // Parse the hostent information returned
    //
    hostent& he = *pHostent;
    printf("name=%s\naliases=%s\naddrtype=%d\nlength=%d\n",
    he.h_name, he.h_aliases, he.h_addrtype, he.h_length);

    sockaddr_in sa;
    for (int nAdapter=0; he.h_addr_list[nAdapter]; nAdapter++) {
    memcpy ( &sa.sin_addr.s_addr, he.h_addr_list[nAdapter],he.h_length);
          // Output the machines IP Address.
          printf("Address: %s\n", inet_ntoa(sa.sin_addr)); // display as string
    } //////////////////
    // Terminate windows sockets API
    //
    WSACleanup(); return 0;
    }