summaryrefslogtreecommitdiff
path: root/examples/v3arch/oneliner/agent/ntforg/trap-async-multiple-transports-and-protocols.py
blob: a075fdaa44050e003cc90ce9435c3a206465ad8c (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
#
# 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.rfc3413 import context
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)) ),
    # 2-nd target (SNMPv2c over IPv4/UDP)
    ( ntforg.CommunityData('public'),
      ntforg.UdpTransportTarget(('localhost', 162)) )
)

snmpEngine = engine.SnmpEngine()

ntfOrg = ntforg.AsyncNotificationOriginator()

for authData, transportTarget in targets:
    ntfOrg.sendNotification(
        snmpEngine,
        authData,
        transportTarget,
        context.SnmpContext(snmpEngine),
        ntforg.null,
        'trap',
        ntforg.MibVariable('SNMPv2-MIB', 'coldStart'),
        ( ( rfc1902.ObjectName('1.3.6.1.2.1.1.1.0'),
            rfc1902.OctetString('my name') ), )
    )

snmpEngine.transportDispatcher.runDispatcher()