如何使用 pysnmp 获取 SNMP 数据?
How to get SNMP data using pysnmp?
我想通过 python pysnmp 模块获取 snmp 数据。我使用命令行获取 SNMP 数据,但现在我想使用 pysnmp 模块读取它。
SNMP命令-
snmpwalk -v 1 -c public <ip address>:<port> xyz::pqr
我正在使用上面的命令。现在我尝试了类似下面的东西 -
import netsnmp
def getmac():
oid = netsnmp.VarList(netsnmp.Varbind('.1.3.6.1.2.1.17.7.1.2.2.1.2'))
res = netsnmp.snmpgetbulk(oid, Version = 1, DestHost='ip',
Community='pub')
return res
print getmac()
我遇到错误 - 导入 netsnmp。没有模块 netsnmp
任何人都可以给我建议如何使用 python 从 snmp 服务器获取 snmp 数据?
您似乎在使用 netsnmp
模块而不是 pysnmp
。
如果你想使用pysnmp
,那么this example可能会有帮助:
from pysnmp.hlapi import *
for (errorIndication,
errorStatus,
errorIndex,
varBinds) in nextCmd(SnmpEngine(),
CommunityData('public', mpModel=0),
UdpTransportTarget(('demo.snmplabs.com', 161)),
ContextData(),
ObjectType(ObjectIdentity('1.3.6.1.2.1.17.7.1.2.2.1.2'))):
if errorIndication or errorStatus:
print(errorIndication or errorStatus)
break
else:
for varBind in varBinds:
print(' = '.join([x.prettyPrint() for x in varBind]))
更新:
上述循环每次迭代都会获取一个 OID 值。如果您想更有效地获取数据,一种选择是将更多 OID 填充到查询中(以许多 ObjectType(...)
参数的形式)。
或者您可以切换到 GETBULK PDU 类型,这可以通过将 nextCmd
调用更改为 bulkCmd
like this.
来完成
from pysnmp.hlapi import *
for (errorIndication,
errorStatus,
errorIndex,
varBinds) in bulkCmd(SnmpEngine(),
CommunityData('public'),
UdpTransportTarget(('demo.snmplabs.com', 161)),
ContextData(),
0, 25, # fetch up to 25 OIDs one-shot
ObjectType(ObjectIdentity('1.3.6.1.2.1.17.7.1.2.2.1.2'))):
if errorIndication or errorStatus:
print(errorIndication or errorStatus)
break
else:
for varBind in varBinds:
print(' = '.join([x.prettyPrint() for x in varBind]))
请记住,GETBULK 命令支持最初是在 SNMP v2c 中引入的,也就是说,您不能在 SNMP v1 上使用它。
我想通过 python pysnmp 模块获取 snmp 数据。我使用命令行获取 SNMP 数据,但现在我想使用 pysnmp 模块读取它。
SNMP命令-
snmpwalk -v 1 -c public <ip address>:<port> xyz::pqr
我正在使用上面的命令。现在我尝试了类似下面的东西 -
import netsnmp
def getmac():
oid = netsnmp.VarList(netsnmp.Varbind('.1.3.6.1.2.1.17.7.1.2.2.1.2'))
res = netsnmp.snmpgetbulk(oid, Version = 1, DestHost='ip',
Community='pub')
return res
print getmac()
我遇到错误 - 导入 netsnmp。没有模块 netsnmp
任何人都可以给我建议如何使用 python 从 snmp 服务器获取 snmp 数据?
您似乎在使用 netsnmp
模块而不是 pysnmp
。
如果你想使用pysnmp
,那么this example可能会有帮助:
from pysnmp.hlapi import *
for (errorIndication,
errorStatus,
errorIndex,
varBinds) in nextCmd(SnmpEngine(),
CommunityData('public', mpModel=0),
UdpTransportTarget(('demo.snmplabs.com', 161)),
ContextData(),
ObjectType(ObjectIdentity('1.3.6.1.2.1.17.7.1.2.2.1.2'))):
if errorIndication or errorStatus:
print(errorIndication or errorStatus)
break
else:
for varBind in varBinds:
print(' = '.join([x.prettyPrint() for x in varBind]))
更新:
上述循环每次迭代都会获取一个 OID 值。如果您想更有效地获取数据,一种选择是将更多 OID 填充到查询中(以许多 ObjectType(...)
参数的形式)。
或者您可以切换到 GETBULK PDU 类型,这可以通过将 nextCmd
调用更改为 bulkCmd
like this.
from pysnmp.hlapi import *
for (errorIndication,
errorStatus,
errorIndex,
varBinds) in bulkCmd(SnmpEngine(),
CommunityData('public'),
UdpTransportTarget(('demo.snmplabs.com', 161)),
ContextData(),
0, 25, # fetch up to 25 OIDs one-shot
ObjectType(ObjectIdentity('1.3.6.1.2.1.17.7.1.2.2.1.2'))):
if errorIndication or errorStatus:
print(errorIndication or errorStatus)
break
else:
for varBind in varBinds:
print(' = '.join([x.prettyPrint() for x in varBind]))
请记住,GETBULK 命令支持最初是在 SNMP v2c 中引入的,也就是说,您不能在 SNMP v1 上使用它。