【问题标题】:Python Set With PYSNMP带有 PYSNMP 的 Python 集
【发布时间】:2021-03-26 20:41:11
【问题描述】:

我正在尝试使用 SNMP get 设置一个值。我已经测试过 OID 可以用 MIB 浏览器写入。我可以使用另一个脚本获取值,但使用集合没有意义。

from pysnmp.hlapi import *
engine = SnmpEngine()
community = CommunityData('public', mpModel=1)
transport = UdpTransportTarget(('target', 161))
context = ContextData()

# Your OID goes here.
identity = ObjectIdentity('.1.3.6.1.4.1.32050')

# If this was a string value, use OctetString() instead of Integer().
new_value = Integer(1)
type = ObjectType(identity, new_value)

# Setting lookupMib=False here because this example uses a numeric OID.
g = setCmd(engine, community, transport, context, identity, type, lookupMib=False)

errorIndication, errorStatus, errorIndex, varBinds = next(g)
print(errorIndication, varBinds)

我看到的错误

line 17, in <module>
    errorIndication, errorStatus, errorIndex, varBinds = next(g)

pysnmp.smi.error.SmiError: ObjectIdentity object not properly initialized

【问题讨论】:

    标签: python-3.x snmp pysnmp oid


    【解决方案1】:

    在您解决了上一个答案中描述的问题后,仅通过代码检查它就会尖叫 OID .1.3.6.1.4.1.32050 一定不是对象实例,因为它是一个企业分支。您可以通过将身份设置为 .1.3.6.1.2.1.1.5.0 在一分钟内证明这一点。

    【讨论】:

      【解决方案2】:

      context 之后,setCmd 需要 ObjectType 类的参数(即,一对 oid + 值),这里不是这种情况。在我看来identity在这里是多余的。

      试试这个:

      g = setCmd(engine, community, transport, context, type, lookupMib=False)
      

      (顺便说一下,你应该避免调用变量type,这是一个预定义的python类。)

      【讨论】:

        猜你喜欢
        • 1970-01-01
        • 1970-01-01
        • 2018-06-09
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        相关资源
        最近更新 更多