summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES4
-rw-r--r--examples/v3arch/agent/cmdrsp.py6
-rw-r--r--examples/v3arch/manager/ntfrcv.py6
3 files changed, 8 insertions, 8 deletions
diff --git a/CHANGES b/CHANGES
index aacc3fc..1a99670 100644
--- a/CHANGES
+++ b/CHANGES
@@ -22,8 +22,8 @@ Revision 4.2.3
operations analysis.
- SnmpEngineId autogeneration does not call DNS resolver but uses
local hostname not to depend upon local IP availability and performance.
-- Alternative SNMPv3 auth/priv protocols and transports added into
- example apps.
+- Example apps reworked, additional SNMPv3 auth/priv protocols and transports
+ added.
- Package version is now available as __init__.__version__ and it is
in-sync with distutils.
- Package meta-information updated.
diff --git a/examples/v3arch/agent/cmdrsp.py b/examples/v3arch/agent/cmdrsp.py
index 0817991..c382f3e 100644
--- a/examples/v3arch/agent/cmdrsp.py
+++ b/examples/v3arch/agent/cmdrsp.py
@@ -38,14 +38,14 @@ config.addSocketTransport(
)
#
-# SNMPv1/2c setup
+# SNMPv1/2c setup (if you need to handle SNMPv1/v2c messages)
#
# SecurityName <-> CommunityName mapping
config.addV1System(snmpEngine, 'my-area', 'public')
#
-# SNMPv3/USM setup
+# SNMPv3/USM setup (if you need to handle SNMPv3 messages)
#
# user: usr-md5-des, auth: MD5, priv DES
@@ -95,7 +95,7 @@ config.addV3User(
)
#
-# SNMP VACM setup
+# Access control (VACM) setup
#
# Install default Agent configuration
diff --git a/examples/v3arch/manager/ntfrcv.py b/examples/v3arch/manager/ntfrcv.py
index 6889fb0..c5f6cb7 100644
--- a/examples/v3arch/manager/ntfrcv.py
+++ b/examples/v3arch/manager/ntfrcv.py
@@ -37,14 +37,14 @@ config.addSocketTransport(
)
#
-# SNMPv1/2c setup
+# SNMPv1/2c setup (if you need to handle SNMPv1/v2c messages)
#
# SecurityName <-> CommunityName mapping
-config.addV1System(snmpEngine, 'my-agt', 'public')
+config.addV1System(snmpEngine, 'my-area', 'public')
#
-# SNMPv3/USM setup
+# SNMPv3/USM setup (if you need to handle SNMPv3 messages)
#
# user: usr-md5-des, auth: MD5, priv DES