我得到了这个通过SNMP检索信息的遗留powershell
脚本,我试图使用snimpy
在Python中移植它。
$PrintersIP = '10.100.7.47', '10.100.7.48'
Function Get-SNMPInfo ([String[]]$Printers) {
Begin {
$SNMP = New-Object -ComObject olePrn.OleSNMP
}
Process {
Foreach ($IP in $Printers) {
$SNMP.Open($IP,"public",2,3000)
[PSCustomObject][Ordered]@{
Name = $SNMP.Get(".1.3.6.1.2.1.1.5.0")
IP = $IP
UpTime = [TimeSpan]::FromSeconds(($SNMP.Get(".1.3.6.1.2.1.1.3.0"))/100)
Model = $SNMP.Get(".1.3.6.1.2.1.25.3.2.1.3.1")
Description = $SNMP.Get(".1.3.6.1.2.1.1.1.0")
#Contact = $SNMP.Get(".1.3.6.1.2.1.1.4.0")
#SN = $SNMP.Get(".1.3.6.1.2.1.43.5.1.1.17.1")
#Location = $SNMP.Get(".1.3.6.1.2.1.1.6.0")
#TonerName = $SNMP.Get("43.11.1.1.6.1.1")
}
}
}
End {
$SNMP.Close()
}
}
Get-SNMPInfo $PrintersIP | ft -AutoSize *
从section Usage of the official documentation他们使用load
方法将MIB加载到文件中。
from snimpy.manager import Manager as M
from snimpy.manager import load
load("IF-MIB")
m = M("localhost")
print(m.ifDescr[0])
OID
名称 我无法找到某些标识符的OID
名称。例如:
1.3.6.1.2.1.1.5.0
→没有; 1.3.6.1.2.1.1.5
→sysName
。OID
的名称,我是否需要加载不同的MIB文件? (例如Printer-MIB
,IF-MIB
等)OID
的名称 答案 0 :(得分:1)
如果您使用load()方法,那么其中的标量和行名称将作为实例属性提供,因此您可以查询' sysContact'等,但作为' sysDescr'和' sysName'不属于IF-MIB,你将无法获得它。
您需要加载相关的MIB(如SNMPv2-MIB)或尝试直接通过OID获取值。
<强>更新强> 我有一个外观和snimpy,它像pysnmp正在进行收集,所以你总是可以直接使用它。下面的示例是通过OID和其他人通过MIB中的命名变量收集一些新的不同SNMP值(如果要通过名称获取,则需要具有相关的MIB)。此示例几乎取自pySNMP documentation
from pysnmp.entity.rfc3413.oneliner import cmdgen
cmdGen = cmdgen.CommandGenerator()
errorIndication, errorStatus, errorIndex, varBinds = cmdGen.getCmd(
cmdgen.CommunityData('public'),
cmdgen.UdpTransportTarget(('demo.snmplabs.com', 161)),
'1.3.6.1.2.1.1.1.0', # sysDescr
'1.3.6.1.2.1.1.2.0', # sysObjectId
'1.3.6.1.2.1.1.3.0', # upTime
'1.3.6.1.2.1.1.4.0', # Contact
'1.3.6.1.2.1.1.5.0', # sysName
'1.3.6.1.2.1.1.6.0', # Location
cmdgen.MibVariable('SNMPv2-MIB', 'sysDescr', 0), #.1.3.6.1.2.1.1.1.0 sysDescr
cmdgen.MibVariable('SNMPv2-MIB', 'sysName', 0) #.1.3.6.1.2.1.1.5.0 sysName
)
# Check for errors and print out results
if errorIndication:
print(errorIndication)
else:
if errorStatus:
print('%s at %s' % (
errorStatus.prettyPrint(),
errorIndex and varBinds[int(errorIndex)-1] or '?'
)
)
else:
for name, val in varBinds:
print('%s = %s' % (name.prettyPrint(), val.prettyPrint()))