# # GETBULK Command Generator # # Send a series of SNMP GETBULK requests # with SNMPv3 with user 'usr-md5-des', MD5 auth and DES privacy protocols # over IPv4/UDP # using Twisted framework for network transport # to an Agent at 195.218.195.228:161 # with values non-repeaters = 1, max-repetitions = 25 # for two OIDs in tuple form (first OID is non-repeating) # stop on end-of-mib condition for both OIDs # # This script performs similar to the following Net-SNMP command: # # $ snmpbulkwalk -v3 -l authPriv -u usr-md5-des -A authkey1 -X privkey1 -C n1 -C r25 -ObentU 195.218.195.228 1.3.6.1.2.1.1 1.3.6.1.4.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 rfc1905 from pysnmp.carrier.twisted.dgram import udp # Create SNMP engine instance snmpEngine = engine.SnmpEngine() # # SNMPv3/USM setup # # user: usr-md5-des, auth: MD5, priv DES config.addV3User( snmpEngine, 'usr-md5-des', config.usmHMACMD5AuthProtocol, 'authkey1', config.usmDESPrivProtocol, 'privkey1' ) config.addTargetParams(snmpEngine, 'my-creds', 'usr-md5-des', 'authPriv') # # Setup transport endpoint and bind it with security settings yielding # a target name # # UDP/IPv4 config.addTransport( snmpEngine, udp.domainName, udp.UdpTwistedTransport().openClientMode() ) config.addTargetAddr( snmpEngine, 'my-router', udp.domainName, ('195.218.195.228', 161), 'my-creds' ) # Error/response receiver def cbFun(response): snmpEngine, errorIndication, errorStatus, errorIndex, varBindTable = response 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: print('%s = %s' % (oid.prettyPrint(), val.prettyPrint())) # 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 GETBULK 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.BulkCommandGenerator().sendVarBinds( snmpEngine, 'my-router', None, '', # contextEngineId, contextName 0, 25, # non-repeaters, max-repetitions [ ((1,3,6,1,2,1,1), None), ((1,3,6,1,4,1,1), None) ] ) # Register error/response receiver function at deferred df.addCallback(cbFun) # Run Twisted main loop reactor.run()