我可以使用 EnableStatic 来配置 IPv6 地址(使用 WMI)吗?
我想使用 WMI(C++ 语言)来配置静态 IPv6 地址。
使用 EnableStatic
配置静态 IPv4 地址工作正常,它是名为 Win32_NetworkAdapterConfiguration
的 WMI 类的一部分。
谁能帮我使用 WMI 配置 IPv6 地址?我一直在寻找示例代码,但没有找到。
I would like to use WMI (in C++) to configure a static IPv6 address.
Configuring a static IPv4 address is working fine using EnableStatic
, which is part of a WMI class named Win32_NetworkAdapterConfiguration
.
Can anyone help me configure an IPv6 address using WMI? I have been looking for example code, but have not found any.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
否。
根据 MSDN 网站上的 Win32_NetworkAdapterConfiguration 文档站点,从 Windows Vista 开始,此 API 支持有限 IPv6 功能(看起来仅限于读取接口上的地址)。
您可能还想查看这篇文章:WMI 中的 IPv6 和 IPv4 支持。
No.
According to the Win32_NetworkAdapterConfiguration documentation on the MSDN web site, this API supports limited IPv6 functionality (looks like it's limited to just reading addresses on an interface) starting in Windows Vista.
You might also want to look at this article: IPv6 and IPv4 Support in WMI.