Python snmp OID值

问题描述 投票:0回答:1

我正在使用此脚本获取内存和CPU静态信息

'''

from pysnmp.hlapi import *

errorIndication, errorStatus, errorIndex, varBinds = next(
    getCmd(SnmpEngine(),
           CommunityData('public', mpModel=0),
           UdpTransportTarget(('demo.snmplabs.com', 3161)),
           ContextData(),
           ObjectType(ObjectIdentity('1.3.6.1.4.1.2021.4.6.0')),
           ObjectType(ObjectIdentity('1.3.6.1.4.1.2021.11.10.0')),
           ObjectType(ObjectIdentity('1.3.6.1.4.1.2021.10.1.3.3')))
)

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]))

'''

我得到以下输出

Response values

但是,我只需要输出最右边的实际值,并将它们保存为float或int值。

python python-3.x snmp pysnmp mib
1个回答
0
投票
您可以重新放置:
© www.soinside.com 2019 - 2024. All rights reserved.