summaryrefslogtreecommitdiff
path: root/examples/hlapi/asyncore/manager/cmdgen/pull-mibs-from-multiple-agents-at-once.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/hlapi/asyncore/manager/cmdgen/pull-mibs-from-multiple-agents-at-once.py')
-rw-r--r--examples/hlapi/asyncore/manager/cmdgen/pull-mibs-from-multiple-agents-at-once.py42
1 files changed, 21 insertions, 21 deletions
diff --git a/examples/hlapi/asyncore/manager/cmdgen/pull-mibs-from-multiple-agents-at-once.py b/examples/hlapi/asyncore/manager/cmdgen/pull-mibs-from-multiple-agents-at-once.py
index 4eb93317..d87d55c5 100644
--- a/examples/hlapi/asyncore/manager/cmdgen/pull-mibs-from-multiple-agents-at-once.py
+++ b/examples/hlapi/asyncore/manager/cmdgen/pull-mibs-from-multiple-agents-at-once.py
@@ -21,28 +21,30 @@ from pysnmp.hlapi.asyncore import *
# ( ( authData, transportTarget, varNames ), ... )
targets = (
# 1-st target (SNMPv1 over IPv4/UDP)
- ( CommunityData('public', mpModel=0),
- UdpTransportTarget(('demo.snmplabs.com', 161)),
- ( ObjectType(ObjectIdentity('1.3.6.1.2.1')),
- ObjectType(ObjectIdentity('1.3.6.1.3.1')) ) ),
+ (CommunityData('public', mpModel=0),
+ UdpTransportTarget(('demo.snmplabs.com', 161)),
+ (ObjectType(ObjectIdentity('1.3.6.1.2.1')),
+ ObjectType(ObjectIdentity('1.3.6.1.3.1')))),
# 2-nd target (SNMPv2c over IPv4/UDP)
- ( CommunityData('public'),
- UdpTransportTarget(('demo.snmplabs.com', 161)),
- ( ObjectType(ObjectIdentity('1.3.6.1.4.1')), ) ),
+ (CommunityData('public'),
+ UdpTransportTarget(('demo.snmplabs.com', 161)),
+ (ObjectType(ObjectIdentity('1.3.6.1.4.1')),)),
# 3-nd target (SNMPv3 over IPv4/UDP)
- ( UsmUserData('usr-md5-des', 'authkey1', 'privkey1'),
- UdpTransportTarget(('demo.snmplabs.com', 161)),
- ( ObjectType(ObjectIdentity('SNMPv2-MIB', 'system')), ) ),
+ (UsmUserData('usr-md5-des', 'authkey1', 'privkey1'),
+ UdpTransportTarget(('demo.snmplabs.com', 161)),
+ (ObjectType(ObjectIdentity('SNMPv2-MIB', 'system')),)),
# 4-th target (SNMPv3 over IPv6/UDP)
- ( UsmUserData('usr-md5-none', 'authkey1'),
- Udp6TransportTarget(('::1', 161)),
- ( ObjectType(ObjectIdentity('IF-MIB', 'ifTable')), ) )
+ (UsmUserData('usr-md5-none', 'authkey1'),
+ Udp6TransportTarget(('::1', 161)),
+ (ObjectType(ObjectIdentity('IF-MIB', 'ifTable')),))
# N-th target
# ...
)
+
# Wait for responses or errors, submit GETNEXT requests for further OIDs
-def cbFun(snmpEngine, sendRequestHandle, errorIndication,
+# noinspection PyUnusedLocal,PyUnusedLocal
+def cbFun(snmpEngine, sendRequestHandle, errorIndication,
errorStatus, errorIndex, varBindTable, cbCtx):
(authData, transportTarget) = cbCtx
print('%s via %s' % (authData, transportTarget))
@@ -50,18 +52,16 @@ def cbFun(snmpEngine, sendRequestHandle, errorIndication,
print(errorIndication)
return
elif errorStatus:
- print('%s at %s' % (
- errorStatus.prettyPrint(),
- errorIndex and varBindTable[-1][int(errorIndex)-1][0] or '?'
- )
- )
+ print('%s at %s' % (errorStatus.prettyPrint(),
+ errorIndex and varBindTable[-1][int(errorIndex) - 1][0] or '?'))
return
else:
for varBindRow in varBindTable:
for varBind in varBindRow:
- print(' = '.join([ x.prettyPrint() for x in varBind ]))
+ print(' = '.join([x.prettyPrint() for x in varBind]))
+
+ return True # continue table retrieval
- return True # continue table retrieval
snmpEngine = SnmpEngine()