PySNMP 的 nextCmd() 中提供的 errorIndication、errorStatus 和 errorIndex 是什么?

What are errorIndication, errorStatus and errorIndex providing in PySNMP's nextCmd()?

我想为 PySNMP 函数 nextCmd() 创建正确的错误处理,并且很好奇在我遍历 nextCmd() 时参数 errorIndication、errorStatus 和 errorIndex 提供了什么。

我在文档中找不到关于这些变量的任何信息,想了解更多。

您可以将 errorIndication 视为本地发生的错误。配置错误或超时将通过它报告。

errorStatuserrorIndex 对只能来自远程 SNMP 实体 - 这就是 SNMP 对等体向我们传达其故障的方式。任何非零 errorStatus 表示(枚举)错误。随附的 errorIndex 指向请求中可能导致报告处理错误的第一个变量绑定。