summaryrefslogtreecommitdiff
path: root/examples/v3arch/oneliner/agent/ntforg/trap-async-multiple-transports-and-protocols.py
blob: c9e955e901cc899896ea469baee865277b51ff3b (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
38
39
40
41
42
43
44
45
46
47
48
49
50
#
# Notification Originator
#
# Send multiple SNMP notifications using the following options:
#
# * SNMPv1 and SNMPv2c
# * with community name 'public'
# * over IPv4/UDP
# * send TRAP notification
# * to multiple Managers
# * with TRAP ID 'coldStart' specified as a MIB symbol
# * include managed object information specified as var-bind objects pair
#
from pysnmp.entity.rfc3413.oneliner import ntforg
from pysnmp.entity import engine
from pysnmp.proto import rfc1902

# List of targets in the followin format:
# ( ( authData, transportTarget ), ... )
targets = (
    # 1-st target (SNMPv1 over IPv4/UDP)
    ( ntforg.CommunityData('public', mpModel=0),
      ntforg.UdpTransportTarget(('localhost', 162)),
      ntforg.ContextData() ),
    # 2-nd target (SNMPv2c over IPv4/UDP)
    ( ntforg.CommunityData('public'),
      ntforg.UdpTransportTarget(('localhost', 162)),
      ntforg.ContextData() ),
)

snmpEngine = engine.SnmpEngine()

ntfOrg = ntforg.AsyncNotificationOriginator()

for authData, transportTarget, contextData in targets:
    ntfOrg.sendNotification(
        snmpEngine,
        authData,
        transportTarget,
        contextData,
        'trap',         # NotifyType
        ntforg.NotificationType(
            ntforg.ObjectIdentity('SNMPv2-MIB', 'coldStart')
        ).addVarBinds(
            ( rfc1902.ObjectName('1.3.6.1.2.1.1.1.0'),
              rfc1902.OctetString('my name') )
        )
    )

snmpEngine.transportDispatcher.runDispatcher()