File: view.py

package info (click to toggle)
python-pysnmp4 4.1.6a-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,016 kB
  • ctags: 1,826
  • sloc: python: 9,809; sh: 60; makefile: 11
file content (62 lines) | stat: -rw-r--r-- 1,959 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# SNMP manager-side MIB management
from pysnmp.smi import builder, view, error

print 'Loading MIB modules...',
mibBuilder = builder.MibBuilder().loadModules(
    'SNMPv2-MIB', 'SNMP-FRAMEWORK-MIB', 'SNMP-COMMUNITY-MIB'
    )
print 'done'

print 'Indexing MIB objects...',
mibView = view.MibViewController(mibBuilder)
print 'done'

print 'MIB symbol name lookup by OID: ',
oid, label, suffix = mibView.getNodeName((1,3,6,1,2,1,1,1))
print oid, label, suffix

print 'MIB symbol name lookup by label: ',
oid, label, suffix = mibView.getNodeName((1,3,6,1,2,'mib-2',1,'sysDescr'))
print oid, label, suffix

print 'MIB symbol name lookup by symbol description: ',
oid, label, suffix = mibView.getNodeName(('sysDescr',))
oid, label, suffix = mibView.getNodeName(('snmpEngineID',), 'SNMP-FRAMEWORK-MIB')
print oid, label, suffix

print 'MIB object value pretty print: ',
mibNode, = mibBuilder.importSymbols('SNMP-FRAMEWORK-MIB', 'snmpEngineID')
print mibNode.syntax

print 'MIB symbol location lookup by name: ',
modName, symName, suffix = mibView.getNodeLocation(('snmpCommunityEntry',))
print symName, modName

print 'MIB node lookup by location: ',
rowNode, = mibBuilder.importSymbols(modName, symName)
print rowNode

print 'Conceptual table index value to oid convertion: ',
oid = rowNode.getInstIdFromIndices('router')
print oid
print 'Conceptual table index oid to value convertion: ',
print rowNode.getIndicesFromInstId(oid)

print 'MIB tree traversal'   
oid, label, suffix = mibView.getFirstNodeName()
while 1:
    try:
        modName, nodeDesc, suffix = mibView.getNodeLocation(oid)
        print '%s::%s == %s' % (modName, nodeDesc, oid)
        oid, label, suffix = mibView.getNextNodeName(oid)
    except error.NoSuchObjectError:
        break

print 'Modules traversal'
modName = mibView.getFirstModuleName()
while 1:
    if modName: print modName
    try:
        modName = mibView.getNextModuleName(modName)
    except error.SmiError:
        break