MIB_IPFORWARDROW 指标与 ROUTE 指标
在 Windows 命令行中,“ROUTE PRINT”命令会生成一个条目表格列表,其中有一列标记为“Metric”。
在 Windows Platform SDK 中,您可以通过 API 通过结构 MIB_IPFORWARDROW。我可以将 MIB_IPFORWARDROW 中的大部分字段与 ROUTE PRINT 中的字段相关联,但是当涉及指标时,MIB_IPFORWARDROW 有 5 个(五个!)指标字段。其中哪一项是 ROUTE PRINT 的指标?
In the Windows command line, the 'ROUTE PRINT' command yields a tabular list of entries, with a single column labeled 'Metric'.
In the Windows Platform SDK, you can fetch the same values (more or less) via the API, through the structure MIB_IPFORWARDROW. I can correlate most of the fields in MIB_IPFORWARDROW to the one's in ROUTE PRINT's but when it comes to Metrics, MIB_IPFORWARDROW has 5 (five!) metric fields. Which one of them is ROUTE PRINT's Metric?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
哎呀...我错过了文档 上面写着:
所以,回答我自己:在 IPv4 中,ROUTE PRINT 的度量是 MIB_IPFORWARDROW 中的 dwForwardMetric1。
Oops... I missed that part in the documentation that says:
So, answering myself: In IPv4, ROUTE PRINT's Metric is dwForwardMetric1 in MIB_IPFORWARDROW.