gpt4 book ai didi

powershell - 如何读取 SNMP OID 输出(位)

转载 作者:行者123 更新时间:2023-12-01 00:56:54 34 4
gpt4 key购买 nike

我有一个快速的问题。它最有可能是用户错误,所以我在开始之前道歉。

我正在尝试为设备设置阈值,以便当我们的一台打印机处于某种状态时它会提醒我们。 (卡住、碳粉用完、无纸等)我找到了处理此问题的特定 oid。 (1.3.6.1.2.1.25.3.5.1.2.1) 具体的oid在HOST-RESOURCE-MIB下叫做hrPrinterDetectedErrorState。我已经验证我可以通过 SNMPWALK 看到 oid。我的问题是解释它吐出的数据。我在 MIB 中读取的内容和我通过 SNMPWALK 看到的内容不同。

下面是 MIB 中对 oid 的描述:

     "This object represents any error conditions detected
by the printer. The error conditions are encoded as
bits in an octet string, with the following
definitions:

Condition Bit #

lowPaper 0

noPaper 1
lowToner 2
noToner 3
doorOpen 4
jammed 5
offline 6
serviceRequested 7
inputTrayMissing 8
outputTrayMissing 9
markerSupplyMissing 10
outputNearFull 11
outputFull 12
inputTrayEmpty 13
overduePreventMaint 14

Bits are numbered starting with the most significant
bit of the first byte being bit 0, the least
significant bit of the first byte being bit 7, the
most significant bit of the second byte being bit 8,
and so on. A one bit encodes that the condition was
detected, while a zero bit encodes that the condition
was not detected.

This object is useful for alerting an operator to
specific warning or error conditions that may occur,
especially those requiring human intervention."

奇怪的是,SNMPWALK 说 oid 是一个十六进制字符串,而 MIB 指定它应该是一个八位字节字符串。两者有区别吗?我是否需要转换 SNMPWALK 输出的数据以使其与 MIB 所说的相匹配?

为了测试一切,我将打印机置于几个不同的“状态”。然后我在设备上运行 SNMPWALK 以查看 oid 输出。这是结果。正如您将看到的,这些结果与 MIB 指定的不匹配。
Case 1: Opened the toner door

Expected Output based on MIB: 4
SNMP Output: 08

Case 2: Removed Toner & Closed the door

Expected Output based on MIB: 1
SNMP Output: 10

Case 3: Placed 1 sheet of paper and printed a 2 page document. The printer ran out of paper.

Expected Output based on MIB: 0 or 1
SNMP Output: @

我对输出感到困惑。我只需要知道如何读取 oid 以便我可以设置阈值,以便当它看到例如 08 时它会执行某个操作。

谢谢你的帮助!

最佳答案

你读错了。您收到的数据实际上应该被解释为一个位数组,并且每一位都是您案例中特定警报的自己的值

Expected Output based on MIB: 4
SNMP Output: 08
你实际上得到了输出:
00001000 00000000
这里的第一个字节涵盖了这些值
lowPaper             0
noPaper 1
lowToner 2
noToner 3
doorOpen 4
jammed 5
offline 6
serviceRequested 7
所以 lowPaper是位 0, noPaper是位 1, lowToner是第 2 位,依此类推 doorOpen是第 4 位,正如您所看到的,该位已设置,表明门已打开。
编辑:
这非常依赖于设备和实现。要知道如何正确解析它涉及大量的反复试验(至少从我的经验来看)。例如,如果您收到消息 9104,这可能是
91 and 04 are separate so you first translate 91 to binary from hex and then the 
same thing with 04
91: 10010001
04: 00000100
这意味着纸张不足、无墨粉、服务请求和 inputTrayEmpty。这看起来是最有可能的工作方式。
如果你只得到一个字节,这意味着你应该只在前 8 位中查找警报。作为您需要注意的事情的示例:如果存在的唯一警报是 doorOpen,您可能只会返回 08,但实际上是 0008,其中前 2 个十六进制字符实际上是警报的第二部分,但不是显示是因为它们不存在。所以在你的情况下,你实际上首先必须切换字节(如果有 4 个)解析前两个和后两个,然后你得到实际结果。
正如我所说,根据我所见,这里没有真正的标准,您必须使用它,直到您确定您知道如何发送数据以及如何解析它。

关于powershell - 如何读取 SNMP OID 输出(位),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27054622/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com