From f5fff54ff3737b739e7597ab16591d28d3c7e6d6 Mon Sep 17 00:00:00 2001 From: elie Date: Mon, 6 Jul 2015 21:30:04 +0000 Subject: synchronous oneliner apps redesigned to offer Python generator-based API along with more comprehensive set of accepted parameters --- .../agent/ntforg/trap-v2c-with-mib-lookup.py | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 examples/v3arch/asyncore/oneliner/agent/ntforg/trap-v2c-with-mib-lookup.py (limited to 'examples/v3arch/asyncore/oneliner/agent/ntforg/trap-v2c-with-mib-lookup.py') diff --git a/examples/v3arch/asyncore/oneliner/agent/ntforg/trap-v2c-with-mib-lookup.py b/examples/v3arch/asyncore/oneliner/agent/ntforg/trap-v2c-with-mib-lookup.py new file mode 100644 index 0000000..b243f43 --- /dev/null +++ b/examples/v3arch/asyncore/oneliner/agent/ntforg/trap-v2c-with-mib-lookup.py @@ -0,0 +1,27 @@ +# +# Notification Originator +# +# Send SNMP notification using the following options: +# +# * SNMPv2c +# * with community name 'public' +# * over IPv4/UDP +# * send TRAP notification +# * with TRAP ID 'coldStart' specified as a MIB symbol +# * include managed object information specified as a MIB symbol +# +from pysnmp.entity.rfc3413.oneliner.ntforg import * + +for errorIndication, \ + errorStatus, errorIndex, \ + varBinds in \ + sendNotification(SnmpEngine(), + CommunityData('public'), + UdpTransportTarget(('localhost', 162)), + ContextData(), + 'trap', + NotificationType( + ObjectIdentity('SNMPv2-MIB', 'coldStart') + )): + if errorIndication: + print(errorIndication) -- cgit v1.2.1