summaryrefslogtreecommitdiff
path: root/examples/v3arch/asyncore/oneliner/agent/ntforg/trap-v2c-with-mib-lookup.py
blob: a328a2ce198dc0d7cb1ccc9d51488baf04a470f5 (plain)
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
"""
SNMPv2c TRAP via NOTIFICATION-TYPE
++++++++++++++++++++++++++++++++++

Initialize TRAP message contents from variables specified
in *NOTIFICATION-TYPE* SMI macro.

* 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

Functionally similar to:

| $ snmptrap -v2c -c public demo.snmplabs.com \
|   12345
|   1.3.6.1.4.1.20408.4.1.1.2 \

"""#
from pysnmp.entity.rfc3413.oneliner.ntforg import *

errorIndication, errorStatus, errorIndex, varBinds = next(
    sendNotification(SnmpEngine(),
                     CommunityData('public'),
                     UdpTransportTarget(('localhost', 162)),
                     ContextData(),
                     'trap',
                     NotificationType(
                         ObjectIdentity('SNMPv2-MIB', 'coldStart')
                     )
    )
)

if errorIndication:
    print(errorIndication)