如何获取 UPnP 的内部 IP、外部 IP 和默认网关

发布于 2024-08-11 09:13:15 字数 133 浏览 3 评论 0原文

我想知道如何获取:

  • 内部 IP 地址;
  • 外部IP地址; 。
  • 默认网关

Windows (WinSock) 和 Unix 系统中的

提前致谢,

I'm wondering how I'd go about getting the:

  • Internal IP address;
  • External IP address; and
  • Default gateway

in Windows (WinSock) and Unix systems.

Thanks in advance,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

三寸金莲 2024-08-18 09:13:15

没有适用于 Windows 和 UNIX 的通用机制。在 Windows 下,您希望从 GetIfTable() 开始。在大多数 UNIX 系统下,请尝试 getifaddrs ()。这些将为您提供各种信息,例如每个接口的 IP 地址。

我不确定如何获取默认网关。我猜想它可以通过调用 sysctl 来获得。您可能想从 netstat 实用程序的源代码开始

外部公共地址是计算机永远不知道的东西。唯一的方法是连接到互联网上的某个东西并让它告诉您来自哪个地址。这是 IPNAT 的经典问题之一。

There is no general purpose mechanism that works on Windows and UNIX. Under Windows you want to start with GetIfTable(). Under most UNIX systems, try getifaddrs(). Those will give you various things like the IP address of each interface.

I'm not sure how one would go about getting the default gateway. I would guess that it is available via some invocation of sysctl. You might want to start with the source for the netstat utility.

The external public address is something that a computer never knows. The only way is to connect to something on the internet and have it tell you what address you are coming from. This is one of the classic problems with IPNAT.

最后的乘客 2024-08-18 09:13:15

解决感谢:
http://www.codeguru.com/forum/showthread.php?t= 233261


#include <winsock2.h>
#include <stdio.h>
#include <stdlib.h>

#pragma comment(lib, "ws2_32.lib")

int main(int nArgumentCount, char **ppArguments)
{
    WSADATA WSAData;

    // Initialize WinSock DLL
    if(WSAStartup(MAKEWORD(1, 0), &WSAData))
    {
        // Error handling
    }

    // Get local host name
    char szHostName[128] = "";

    if(gethostname(szHostName, sizeof(szHostName)))
    {
        // Error handling -> call 'WSAGetLastError()'
    }

    SOCKADDR_IN socketAddress;
    hostent *pHost        = 0;

    // Try to get the host ent
    pHost = gethostbyname(szHostName);
    if(!pHost)
    {
        // Error handling -> call 'WSAGetLastError()'
    }

    char ppszIPAddresses[10][16]; // maximum of ten IP addresses
    for(int iCnt = 0; (pHost->h_addr_list[iCnt]) && (iCnt < 10); ++iCnt)
    {
        memcpy(&socketAddress.sin_addr, pHost->h_addr_list[iCnt], pHost->h_length);
        strcpy(ppszIPAddresses[iCnt], inet_ntoa(socketAddress.sin_addr));

        printf("Found interface address: %s\n", ppszIPAddresses[iCnt]);
    }

    // Cleanup
    WSACleanup();
}

Solved thanks to:
http://www.codeguru.com/forum/showthread.php?t=233261


#include <winsock2.h>
#include <stdio.h>
#include <stdlib.h>

#pragma comment(lib, "ws2_32.lib")

int main(int nArgumentCount, char **ppArguments)
{
    WSADATA WSAData;

    // Initialize WinSock DLL
    if(WSAStartup(MAKEWORD(1, 0), &WSAData))
    {
        // Error handling
    }

    // Get local host name
    char szHostName[128] = "";

    if(gethostname(szHostName, sizeof(szHostName)))
    {
        // Error handling -> call 'WSAGetLastError()'
    }

    SOCKADDR_IN socketAddress;
    hostent *pHost        = 0;

    // Try to get the host ent
    pHost = gethostbyname(szHostName);
    if(!pHost)
    {
        // Error handling -> call 'WSAGetLastError()'
    }

    char ppszIPAddresses[10][16]; // maximum of ten IP addresses
    for(int iCnt = 0; (pHost->h_addr_list[iCnt]) && (iCnt < 10); ++iCnt)
    {
        memcpy(&socketAddress.sin_addr, pHost->h_addr_list[iCnt], pHost->h_length);
        strcpy(ppszIPAddresses[iCnt], inet_ntoa(socketAddress.sin_addr));

        printf("Found interface address: %s\n", ppszIPAddresses[iCnt]);
    }

    // Cleanup
    WSACleanup();
}
挽心 2024-08-18 09:13:15

Linux:

ifconfig -a gives internal ip
netstat -a   gives default gateway

Windows:

ipconfig /all  gives internal ip
netstat -a gives default gateway

我不确定如何明确确定任一系统中的外部 IP

Linux:

ifconfig -a gives internal ip
netstat -a   gives default gateway

Windows:

ipconfig /all  gives internal ip
netstat -a gives default gateway

I'm not sure how to definitively determine the external ip in either system

半窗疏影 2024-08-18 09:13:15

在高山上与 miniupnpc 一起

upnpc -s | grep "ExternalIPAddress" | cut -d '=' -f2

on alpine with miniupnpc

upnpc -s | grep "ExternalIPAddress" | cut -d '=' -f2
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文