summaryrefslogtreecommitdiff
path: root/examples/v3arch/twisted/manager/cmdgen/getnext-v3-pull-subtree.py
diff options
context:
space:
mode:
authorelie <elie>2013-03-16 17:05:46 +0000
committerelie <elie>2013-03-16 17:05:46 +0000
commitc4ada8eada8b4ea59a4bbb7d9c6123199d51917a (patch)
tree536f717c2f9a628c06684bb713b556705ff4671e /examples/v3arch/twisted/manager/cmdgen/getnext-v3-pull-subtree.py
parent19698bc00888b4cc59e0cec603a752c2e95fe849 (diff)
downloadpysnmp-c4ada8eada8b4ea59a4bbb7d9c6123199d51917a.tar.gz
a dozen of lightweight Twisted-based example scripts replaced more
complex example implementations used previously.
Diffstat (limited to 'examples/v3arch/twisted/manager/cmdgen/getnext-v3-pull-subtree.py')
-rw-r--r--examples/v3arch/twisted/manager/cmdgen/getnext-v3-pull-subtree.py106
1 files changed, 106 insertions, 0 deletions
diff --git a/examples/v3arch/twisted/manager/cmdgen/getnext-v3-pull-subtree.py b/examples/v3arch/twisted/manager/cmdgen/getnext-v3-pull-subtree.py
new file mode 100644
index 0000000..df556bb
--- /dev/null
+++ b/examples/v3arch/twisted/manager/cmdgen/getnext-v3-pull-subtree.py
@@ -0,0 +1,106 @@
+#
+# GETNEXT Command Generator
+#
+# Send a series of SNMP GETNEXT requests
+# with SNMPv3 with user 'usr-none-none', no auth and no privacy protocols
+# over IPv4/UDP
+# using Twisted framework for network transport
+# to an Agent at 127.0.0.1:161
+# for an OID in string form
+# stop whenever received OID goes out of initial prefix (it may be a table)
+#
+# This script performs similar to the following Net-SNMP command:
+#
+# $ snmpwalk -v3 -l noAuthNoPriv -u usr-none-none -ObentU 127.0.0.1:161 1.3.6.1.2.1.1
+#
+from twisted.internet import reactor, defer
+from pysnmp.entity import engine, config
+from pysnmp.entity.rfc3413.twisted import cmdgen
+from pysnmp.proto import rfc1902, rfc1905
+from pysnmp.carrier.twisted import dispatch
+from pysnmp.carrier.twisted.dgram import udp
+
+# Initial OID prefix
+initialOID = rfc1902.ObjectName('1.3.6.1.2.1.1')
+
+# Create SNMP engine instance
+snmpEngine = engine.SnmpEngine()
+
+# Instantiate and register Twisted dispatcher at SNMP engine
+snmpEngine.registerTransportDispatcher(dispatch.TwistedDispatcher())
+
+#
+# SNMPv3/USM setup
+#
+
+# user: usr-none-none, no auth, no priv
+config.addV3User(
+ snmpEngine, 'usr-none-none',
+)
+config.addTargetParams(snmpEngine, 'my-creds', 'usr-none-none', 'noAuthNoPriv')
+
+#
+# Setup transport endpoint and bind it with security settings yielding
+# a target name
+#
+
+# UDP/IPv4
+config.addSocketTransport(
+ snmpEngine,
+ udp.domainName,
+ udp.UdpTwistedTransport().openClientMode()
+)
+config.addTargetAddr(
+ snmpEngine, 'my-router',
+ udp.domainName, ('127.0.0.1', 161),
+ 'my-creds'
+)
+
+# Error/response receiver
+def cbFun(cbCtx):
+ (errorIndication, errorStatus, errorIndex, varBindTable) = cbCtx
+ if errorIndication:
+ print(errorIndication)
+ elif errorStatus:
+ print('%s at %s' % (
+ errorStatus.prettyPrint(),
+ errorIndex and varBinds[int(errorIndex)-1][0] or '?'
+ )
+ )
+ else:
+ for varBindRow in varBindTable:
+ for oid, val in varBindRow:
+ if initialOID.isPrefixOf(oid):
+ print('%s = %s' % (oid.prettyPrint(), val.prettyPrint()))
+ else:
+ reactor.stop()
+ return False # signal dispatcher to stop
+
+ # Stop reactor when we are done walking (optional)
+ for oid, val in varBindRow:
+ if not val.isSameTypeWith(rfc1905.endOfMibView):
+ break
+ else:
+ reactor.stop()
+ return
+
+ # Re-create deferred for next GETNEXT iteration
+ df = defer.Deferred()
+ df.addCallback(cbFun)
+ return df # This also indicates that we wish to continue walking
+
+ # Stop reactor on SNMP error (optional)
+ reactor.stop()
+
+# Prepare request to be sent yielding Twisted deferred object
+df = cmdgen.NextCommandGenerator().sendReq(
+ snmpEngine,
+ 'my-router',
+ ( (initialOID, None), )
+)
+
+# Register error/response receiver function at deferred
+df.addCallback(cbFun)
+
+# Run Twisted main loop
+reactor.run()