如何在 Windows 中向现有网络适配器添加 IP 地址?

发布于 2024-08-17 17:23:35 字数 142 浏览 4 评论 0原文

我正在尝试使用 Windows API 将新的 IP 地址添加到 Windows 中的本地网络适配器。 Windows API 中是否有执行此操作的函数?如果有,它们是什么?

我并不是要创建虚拟网络适配器,而只是尝试将多个 IP 地址分配给同一个适配器。

I am trying to add a new IP address to a local network adapter in Windows using the Windows API. Are there functions to do this in the Windows API, and if so, what are they?

I am not trying to create virtual network adapters, but simply trying to assign multiple IP addresses to the same adapter.

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

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

发布评论

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

评论(3

因为看清所以看轻 2024-08-24 17:23:35

请参阅 IP 帮助程序库中的 AddIpAddress

See AddIpAddress in the IP Helper library

青衫儰鉨ミ守葔 2024-08-24 17:23:35

包含 iphlpapi.h
和使用的函数:

“”“

ULONG NTEContext = 0;
ULONG NTEInstance = 0;
DWORD status;

status = AddIPAddress (ipadd,
               netmask,
               index,
               &NTEContext,
               &NTEInstance);

“””

索引是网络适配器索引。

include iphlpapi.h
and function to use:

"""

ULONG NTEContext = 0;
ULONG NTEInstance = 0;
DWORD status;

status = AddIPAddress (ipadd,
               netmask,
               index,
               &NTEContext,
               &NTEInstance);

"""

index is network adapter index.

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