如何在 Windows 中向现有网络适配器添加 IP 地址?
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
查看 AddIPAddress 和 删除IP地址。
Take a look at AddIPAddress and DeleteIPAddress.
请参阅 IP 帮助程序库中的 AddIpAddress
See AddIpAddress in the IP Helper library
包含 iphlpapi.h
和使用的函数:
“”“
“””
索引是网络适配器索引。
include iphlpapi.h
and function to use:
"""
"""
index is network adapter index.