PySNMP Builder无法加载CISCO-RTTMON-MIB

时间:2013-08-20 14:33:56

标签: python snmp pysnmp

在尝试加载CISCO-RTTMON-MIB时,我在PySNMP构建器中不断收到此错误。下面的代码适用于我迄今为止尝试过的所有其他mibs,但是这个mib卡住了。这也是我第一次尝试走完整个表(rttMonStats),所以我可能只是做错了。这就是我所做的:

我下载了第2版专栏here下的所有文件:http://tools.cisco.com/Support/SNMP/do/BrowseMIB.do?local=en&mibName=CISCO-RTTMON-MIB

标记为“非思科MIB”的那些,我在网上其他地方找到了“下载MIB_NAME”。我通过build-pysnmp-mib运行了其中的每一个,如:

build-pysnmp-mib MIB_NAME.my > MIB_NAME.py.

然后我将所有* .py文件复制到/ opt / appname / mibs /

这是snmpcommands.py中的相关定义:

def walk(community, ipaddress, mib, oid, index):
    cmdGen = cmdgen.CommandGenerator()
    mibBuilder = cmdGen.snmpEngine.msgAndPduDsp.mibInstrumController.mibBuilder
    mibSources = mibBuilder.getMibSources() + (
            builder.DirMibSource('/opt/appname/mibs'),
            )
    mibBuilder.setMibSources(*mibSources)
    mibBuilder.loadModules()
    errorIndication, errorStatus, errorIndex, varBindTable = cmdGen.nextCmd(
            cmdgen.CommunityData(community, mpModel=0),
            cmdgen.UdpTransportTarget((ipaddress, 161)),
            cmdgen.MibVariable(mib, oid, index),
            lookupValues=True, lookupNames=True
    )

    if errorIndication:
            print(errorIndication)
    else:
            if errorStatus:
                    print('%s at %s' % (
                            errorStatus.prettyPrint(),
                            errorIndex and varBinds[int(errorIndex)-1] or '?'
                            )
                    )
            else:
                    result = {}
                    for tableRow in varBindTable:
                            for oid, val in tableRow:
                                    result[oid.prettyPrint()] = val.prettyPrint()

                    return json.dumps(result)

我称之为:

>>>import snmpcommands
>>>snmpcommands.walk('community', 'ip.add.ress', 'CISCO-RTTMON-MIB', 'rttMonStats', '0.0.0.0')

然而,我明白了:

>>> snmpcommands.walk('community', 'ip.add.ress', 'CISCO-RTTMON-MIB', 'rttMonStats', '0.0.0.0')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "snmpcommands.py", line 57, in walk
    mibBuilder.loadModules()
  File "/usr/lib/python2.6/site-packages/pysnmp-4.2.4-py2.6.egg/pysnmp/smi/builder.py", line 251, in loadModules
    'MIB module \"%s\" load error: %s' % (modPath, sys.exc_info()[1])
pysnmp.smi.error.SmiError: MIB module "/opt/appname/mibs/CISCO-RTTMON-MIB.py" load     error:     ConstraintsIntersection(ConstraintsIntersection(ConstraintsIntersection(ConstraintsIntersection(), ValueSizeConstraint(0, 65535)), ValueSizeConstraint(0, 255)), ValueSizeConstraint(1, 64)) failed at: "ValueSizeConstraint(1, 64) failed at: """ at SnmpAdminString

我对PySNMP很新,所以我猜测问题是它期望SnmpAdminString中的一个值从SNMP-FRAMEWORK-MIB中提取并且它是空的。我只是不知道如何解决它。

1 个答案:

答案 0 :(得分:1)

看起来你有一个空字符串作为CISCO-RTTMON-MIB.py的SnmpAdminString(“”)初始化程序。这似乎违反了最终导致异常的SnmpAdminString约束。所以我要为空的SnmpAdminString初始化器grep CISCO-RTTMON-MIB.py,并用符合的值(1-64个八位字节)替换它们,或者只删除空的初始化器(例如使它看起来像SnmpAdminString())。