对于失败的 SNMP SET 请求,netsnmp 中的 errindex 在哪里设置?
对于失败的 SNMP SET 请求,何时应将 errindex 设置为响应 PDU 中的适当值? 谢谢你!
When is the errindex supposed to be set to the appropriate value in the response PDU for an SNMP SET request that fails?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实际上,您没有使用 Net-SNMP API 设置错误索引。问题是,即使某些 SNMP 请求组件没有成功,您对请求的循环实际上应该始终返回 SNMPERR_SUCCESS 来指示处理程序成功。
要指示特定请求失败并显示错误消息,您可以使用以下 API:
例如。要选择要返回的正确错误,请参阅 RFC3416 中的第 4.2.5 节,其中有一个很好的内容针对给定情况返回正确错误代码的分步过程。
You actually don't set the error-index using the Net-SNMP API. The problem is that your loop over the requests should actually always return SNMPERR_SUCCESS to indicate the handler succeeded even if some of the SNMP request components didn't.
To indicate a particular request failed with an error message, you would use the following API:
for example. For picking the correct error to return, please see section 4.2.5 in RFC3416 which has a nice step-by-step procedure for returning the right error code for a given situation.