我试图在pysnmp中使用setCmd()方法来设置变量。我在设置特定的对象标识时遇到问题,因为pysnmp似乎将“ .0”附加到要设置的对象标识上。为什么会这样呢?

我得到的输出是:

noSuchName at 1.3.6.1.4.1.2682.1.2.3.4.0


该脚本的内容是:

errorIndication, errorStatus, errorIndex, varBinds = next(
    setCmd(SnmpEngine(),
           CommunityData('dps_public', mpModel=0),
           UdpTransportTarget(('192.168.1.100', 161)),
           ContextData(),
           ObjectType(ObjectIdentity('1.3.6.1.4.1.2682.1.2.3.4'),
                      Integer(2)))
)

if errorIndication:
    print(errorIndication)
elif errorStatus:
    print('%s at %s' % (errorStatus.prettyPrint(),
                        errorIndex and varBinds[int(errorIndex) - 1][0] or '?'))
else:
    for varBind in varBinds:
        print(' = '.join([x.prettyPrint() for x in varBind]))

最佳答案

我怀疑您是从SNMP代理获取此修改的OID(我认为这将违反协议)。据我所知,pysnmp不应以这种方式弄乱OID。

要进行验证,您可以在demo.snmplabs.com上针对SNMP代理尝试脚本和/或启用pysnmp调试,并查看所查询的SNMP代理中PDU中的内容。

from pysnmp import debug

debug.setLogger(debug.Debug('msgproc'))

...

关于python - pysnmp将后缀附加到对象标识,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52488695/

10-09 14:05