如何获取 UPnP 的内部 IP、外部 IP 和默认网关
我想知道如何获取:
- 内部 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
没有适用于 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, trygetifaddrs()
. 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.
解决感谢:
http://www.codeguru.com/forum/showthread.php?t= 233261
Solved thanks to:
http://www.codeguru.com/forum/showthread.php?t=233261
Linux:
Windows:
我不确定如何明确确定任一系统中的外部 IP
Linux:
Windows:
I'm not sure how to definitively determine the external ip in either system
在高山上与 miniupnpc 一起
on alpine with miniupnpc