summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelie <elie>2005-10-12 15:56:39 +0000
committerelie <elie>2005-10-12 15:56:39 +0000
commitb0cdea76886841fd93b4a5a452cf30ec920bdaf3 (patch)
tree221bfed1aa4b8fbc32b150db019a1a97630dd3ee
parent9921d34be71d59f05edbd6e248f3f1a727079230 (diff)
downloadpysnmp-b0cdea76886841fd93b4a5a452cf30ec920bdaf3.tar.gz
adjusted to changed sendNotification() params
-rw-r--r--examples/v3arch/oneliner/agent/ntforg.py16
1 files changed, 11 insertions, 5 deletions
diff --git a/examples/v3arch/oneliner/agent/ntforg.py b/examples/v3arch/oneliner/agent/ntforg.py
index a5576f1..3277ba3 100644
--- a/examples/v3arch/oneliner/agent/ntforg.py
+++ b/examples/v3arch/oneliner/agent/ntforg.py
@@ -3,14 +3,20 @@ from pysnmp.proto.api import v2c
errorIndication = ntforg.NotificationOriginator().sendNotification(
# SNMP v1
- ntforg.CommunityData('test-manager', 'public', 0),
+# ntforg.CommunityData('test-manager', 'public', 0),
# SNMP v2
-# ntforg.CommunityData('test-manager', 'public'),
+# ntforg.CommunityData('test-manager', 'public'),
# SNMP v3
-# ntforg.UsmUserData('test-manager', 'authkey1', 'privkey1'),
- ntforg.UdpTransportTarget(('localhost', 1162)),
- ('SNMPv2-MIB', 'coldStart')#, ((1,3,6,1,2,1,1,3,0), v2c.Integer(32))
+ ntforg.UsmUserData('test-user', 'authkey1', 'privkey1'),
+ ntforg.UdpTransportTarget(('localhost', 162)),
+ 'trap',
+ ('SNMPv2-MIB', 'coldStart'),
+ (((1,3,6,1,2,1,1,3,0), v2c.TimeTicks(44100)),)
)
if errorIndication:
print errorIndication
+
+# XXX
+# informs require cbFun?
+# responses do not come back for informs