snmp:仅给出表索引的一部分时的正确行为?
假设 MIB 包含一个按 MAC 地址索引的表。当管理器请求 myTable.0.1
时,代理的正确行为是什么?这是一个不完整的索引。
我看到的一些可能性:
- 返回表中的第一行——将此部分索引视为位于第一行之前。
- 将其视为子树——返回表中与此 MAC 前缀匹配的行。
- 不返回任何行——将其视为在表中最后一行之后。
- 返回某种错误?
Assume a MIB contains a table indexed by MAC address. What's the correct behavior by the agent when a manager requests myTable.0.1
? This is an incomplete index.
Some possibilities that I see:
- Return the first row in the table -- treat this partial index as coming before the first row.
- Treat this as a subtree -- return rows in the table that match this MAC prefix.
- Return no rows -- treat this as coming after the last row in the table.
- Return some kind of error?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
取决于操作。
对不完整的 OID 执行 GET 将返回 noSuchName。
对不完整的 OID 执行 GETNEXT 将返回下一个完整的 OID。
请注意,许多制造商未能正确实施 SNMP 代理。您不能总是指望它们按预期返回下一个 OID。
Depends on the operation.
A GET on an incomplete OID will return noSuchName.
A GETNEXT on an incomplete OID will return the next complete OID.
Note that many manufacturers fail to implement SNMP agents correctly. You can't always count on them to return the next OID as expected.