如果我尝试这样的话,我得到了
ValueError:解压缩的值太多(预期为4)
有人可以解释原因吗?
from pysnmp.hlapi import *
errorIndication, errorStatus, errorIndex, varBinds = nextCmd(
SnmpEngine(),
CommunityData('public', mpModel=1),
UdpTransportTarget(('giga-int-2', 161)),
ContextData(),
ObjectType(ObjectIdentity('1.3.6.1.2.1.31.1.1.1.1')),
lexicographicMode=False
)
if errorIndication:
print(errorIndication)
elif errorStatus:
print('%s at %s' % (errorStatus.prettyPrint(), errorIndex and varBinds[int(errorIndex) - 1][0] or '?'))
else:
for v in varBinds:
for name, val in v:
print('%s = %s' % (name.prettyPrint(), val.prettyPrint()))
答案 0 :(得分:0)
nextCmd()
函数(以及其他pysnmp函数)返回一个Python生成器对象,您应该迭代它:
>>> from pysnmp.hlapi import *
>>> g = nextCmd(SnmpEngine(),
... CommunityData('public'),
... UdpTransportTarget(('demo.snmplabs.com', 161)),
... ContextData(),
... ObjectType(ObjectIdentity('SNMPv2-MIB', 'sysDescr')))
>>> next(g)
(None, 0, 0, [ObjectType(ObjectIdentity(ObjectName('1.3.6.1.2.1.1.1.0')),
DisplayString('SunOS zeus.snmplabs.com 4.1.3_U1 1 sun4m'))])
您可以像任何Python迭代一样使用此生成器,例如在循环中。或者,如果您只需要运行一个请求/响应,则只需在其上调用next
即可。
在每次迭代中,pysnmp发出一个请求(一个或多个取决于环境),要求单个OID大于前一个OID。这样你就可以走路了#34; SNMP代理,直到你摆脱循环或耗尽代理方的OID。
您的错误在于您希望pysnmp nextCmd
立即运行SNMP查询并返回值。相反,pysnmp为您提供了一个生成器协程,您可以重复使用它来执行多个查询(您也可以.send()
它可以查询OID。
答案 1 :(得分:0)
感谢您的回答。我重写了代码。现在它正在做我想要的。它只搜索'1.3.6.1.2.1.31.1.1.1.x'树。
from pysnmp.hlapi import *
for errorIndication, errorStatus, errorIndex, varBinds in nextCmd(
SnmpEngine(),
CommunityData('public', mpModel=1),
UdpTransportTarget(('giga-int-2', 161)),
ContextData(),
ObjectType(ObjectIdentity('1.3.6.1.2.1.31.1.1.1.1')),
lexicographicMode=False
):
if errorIndication:
print(errorIndication)
elif errorStatus:
print('%s at %s' % (errorStatus.prettyPrint(), errorIndex and varBinds[int(errorIndex) - 1][0] or '?'))
else:
for v in varBinds:
print(v.prettyPrint())
SNMPv2-SMI::mib-2.31.1.1.1.1.1 = sc0
SNMPv2-SMI::mib-2.31.1.1.1.1.2 = sl0
SNMPv2-SMI::mib-2.31.1.1.1.1.3 = sc1
SNMPv2-SMI::mib-2.31.1.1.1.1.5 = VLAN-1
SNMPv2-SMI::mib-2.31.1.1.1.1.6 = VLAN-1002
...