summaryrefslogtreecommitdiff
path: root/docs/source/examples/v3arch/asyncore/agent/ntforg
diff options
context:
space:
mode:
Diffstat (limited to 'docs/source/examples/v3arch/asyncore/agent/ntforg')
-rw-r--r--docs/source/examples/v3arch/asyncore/agent/ntforg/advanced-topics.rst8
-rw-r--r--docs/source/examples/v3arch/asyncore/agent/ntforg/common-notifications.rst29
-rw-r--r--docs/source/examples/v3arch/asyncore/agent/ntforg/evaluating-notification-type.rst7
-rw-r--r--docs/source/examples/v3arch/asyncore/agent/ntforg/multiple-managers-operations.rst20
-rw-r--r--docs/source/examples/v3arch/asyncore/agent/ntforg/snmp-versions.rst30
-rw-r--r--docs/source/examples/v3arch/asyncore/agent/ntforg/transport-tweaks.rst19
6 files changed, 67 insertions, 46 deletions
diff --git a/docs/source/examples/v3arch/asyncore/agent/ntforg/advanced-topics.rst b/docs/source/examples/v3arch/asyncore/agent/ntforg/advanced-topics.rst
index 83fda00..4724b3a 100644
--- a/docs/source/examples/v3arch/asyncore/agent/ntforg/advanced-topics.rst
+++ b/docs/source/examples/v3arch/asyncore/agent/ntforg/advanced-topics.rst
@@ -4,13 +4,15 @@
Advanced topic
--------------
-.. include:: /../../examples/v3arch/asyncore/agent/ntforg/trap-v2c-custom-pdu.py
+.. include:: /../../examples/v3arch/asyncore/agent/ntforg/send-custom-pdu.py
:start-after: """
:end-before: """#
-.. literalinclude:: /../../examples/v3arch/asyncore/agent/ntforg/trap-v2c-custom-pdu.py
+.. literalinclude:: /../../examples/v3arch/asyncore/agent/ntforg/send-custom-pdu.py
:start-after: """#
:language: python
-:download:`Download</../../examples/v3arch/asyncore/agent/ntforg/trap-v2c-custom-pdu.py>` script.
+:download:`Download</../../examples/v3arch/asyncore/agent/ntforg/send-custom-pdu.py>` script.
+
+See also: :doc:`library reference </docs/contents>`.
diff --git a/docs/source/examples/v3arch/asyncore/agent/ntforg/common-notifications.rst b/docs/source/examples/v3arch/asyncore/agent/ntforg/common-notifications.rst
index 749c4ff..fc31852 100644
--- a/docs/source/examples/v3arch/asyncore/agent/ntforg/common-notifications.rst
+++ b/docs/source/examples/v3arch/asyncore/agent/ntforg/common-notifications.rst
@@ -4,43 +4,34 @@
Common notifications
--------------------
-.. include:: /../../examples/v3arch/asyncore/agent/ntforg/trap-v1.py
+.. include:: /../../examples/v3arch/asyncore/agent/ntforg/v1-trap.py
:start-after: """
:end-before: """#
-.. literalinclude:: /../../examples/v3arch/asyncore/agent/ntforg/trap-v1.py
+.. literalinclude:: /../../examples/v3arch/asyncore/agent/ntforg/v1-trap.py
:start-after: """#
:language: python
-:download:`Download</../../examples/v3arch/asyncore/agent/ntforg/trap-v1.py>` script.
+:download:`Download</../../examples/v3arch/asyncore/agent/ntforg/v1-trap.py>` script.
-.. include:: /../../examples/v3arch/asyncore/agent/ntforg/trap-v2c.py
+.. include:: /../../examples/v3arch/asyncore/agent/ntforg/v2c-trap.py
:start-after: """
:end-before: """#
-.. literalinclude:: /../../examples/v3arch/asyncore/agent/ntforg/trap-v2c.py
+.. literalinclude:: /../../examples/v3arch/asyncore/agent/ntforg/v2c-trap.py
:start-after: """#
:language: python
-:download:`Download</../../examples/v3arch/asyncore/agent/ntforg/trap-v2c.py>` script.
+:download:`Download</../../examples/v3arch/asyncore/agent/ntforg/v2c-trap.py>` script.
-.. include:: /../../examples/v3arch/asyncore/agent/ntforg/inform-v2c.py
+.. include:: /../../examples/v3arch/asyncore/agent/ntforg/v2c-inform.py
:start-after: """
:end-before: """#
-.. literalinclude:: /../../examples/v3arch/asyncore/agent/ntforg/inform-v2c.py
+.. literalinclude:: /../../examples/v3arch/asyncore/agent/ntforg/v2c-inform.py
:start-after: """#
:language: python
-:download:`Download</../../examples/v3arch/asyncore/agent/ntforg/inform-v2c.py>` script.
-
-.. include:: /../../examples/v3arch/asyncore/agent/ntforg/inform-v3.py
- :start-after: """
- :end-before: """#
-
-.. literalinclude:: /../../examples/v3arch/asyncore/agent/ntforg/inform-v3.py
- :start-after: """#
- :language: python
-
-:download:`Download</../../examples/v3arch/asyncore/agent/ntforg/inform-v3.py>` script.
+:download:`Download</../../examples/v3arch/asyncore/agent/ntforg/v2c-inform.py>` script.
+See also: :doc:`library reference </docs/contents>`.
diff --git a/docs/source/examples/v3arch/asyncore/agent/ntforg/evaluating-notification-type.rst b/docs/source/examples/v3arch/asyncore/agent/ntforg/evaluating-notification-type.rst
index 6ec5acc..72a3469 100644
--- a/docs/source/examples/v3arch/asyncore/agent/ntforg/evaluating-notification-type.rst
+++ b/docs/source/examples/v3arch/asyncore/agent/ntforg/evaluating-notification-type.rst
@@ -13,14 +13,15 @@ Consequently, sending specific NOTIFICATION-TYPE implies including certain
set of OIDs into PDU. PySNMP offers this facility through NotificationType
class.
-.. include:: /../../examples/v3arch/asyncore/agent/ntforg/trap-v2c-with-objects.py
+.. include:: /../../examples/v3arch/asyncore/agent/ntforg/v2c-trap-via-notification-type.py
:start-after: """
:end-before: """#
-.. literalinclude:: /../../examples/v3arch/asyncore/agent/ntforg/trap-v2c-with-objects.py
+.. literalinclude:: /../../examples/v3arch/asyncore/agent/ntforg/v2c-trap-via-notification-type.py
:start-after: """#
:language: python
-:download:`Download</../../examples/v3arch/asyncore/agent/ntforg/trap-v2c-with-objects.py>` script.
+:download:`Download</../../examples/v3arch/asyncore/agent/ntforg/v2c-trap-via-notification-type.py>` script.
+See also: :doc:`library reference </docs/contents>`.
diff --git a/docs/source/examples/v3arch/asyncore/agent/ntforg/multiple-managers-operations.rst b/docs/source/examples/v3arch/asyncore/agent/ntforg/multiple-managers-operations.rst
index 538f40b..4fe6b97 100644
--- a/docs/source/examples/v3arch/asyncore/agent/ntforg/multiple-managers-operations.rst
+++ b/docs/source/examples/v3arch/asyncore/agent/ntforg/multiple-managers-operations.rst
@@ -10,33 +10,35 @@ different network addresses over different SNMP versions/credentials.
The following few examples use this facility.
-.. include:: /../../examples/v3arch/asyncore/agent/ntforg/inform-multiple-protocols.py
+.. include:: /../../examples/v3arch/asyncore/agent/ntforg/send-inform-to-multiple-managers.py
:start-after: """
:end-before: """#
-.. literalinclude:: /../../examples/v3arch/asyncore/agent/ntforg/inform-multiple-protocols.py
+.. literalinclude:: /../../examples/v3arch/asyncore/agent/ntforg/send-inform-to-multiple-managers.py
:start-after: """#
:language: python
-:download:`Download</../../examples/v3arch/asyncore/agent/ntforg/inform-multiple-protocols.py>` script.
+:download:`Download</../../examples/v3arch/asyncore/agent/ntforg/send-inform-to-multiple-managers.py>` script.
-.. include:: /../../examples/v3arch/asyncore/agent/ntforg/trap-v2c-multiple-addresses.py
+.. include:: /../../examples/v3arch/asyncore/agent/ntforg/send-trap-to-multiple-managers.py
:start-after: """
:end-before: """#
-.. literalinclude:: /../../examples/v3arch/asyncore/agent/ntforg/trap-v2c-multiple-addresses.py
+.. literalinclude:: /../../examples/v3arch/asyncore/agent/ntforg/send-trap-to-multiple-managers.py
:start-after: """#
:language: python
-:download:`Download</../../examples/v3arch/asyncore/agent/ntforg/trap-v2c-multiple-addresses.py>` script.
+:download:`Download</../../examples/v3arch/asyncore/agent/ntforg/send-trap-to-multiple-managers.py>` script.
-.. include:: /../../examples/v3arch/asyncore/agent/ntforg/trap-v2c-multiple-transports.py
+.. include:: /../../examples/v3arch/asyncore/agent/ntforg/multiple-different-notifications-at-once.py
:start-after: """
:end-before: """#
-.. literalinclude:: /../../examples/v3arch/asyncore/agent/ntforg/trap-v2c-multiple-transports.py
+.. literalinclude:: /../../examples/v3arch/asyncore/agent/ntforg/multiple-different-notifications-at-once.py
:start-after: """#
:language: python
-:download:`Download</../../examples/v3arch/asyncore/agent/ntforg/trap-v2c-multiple-transports.py>` script.
+:download:`Download</../../examples/v3arch/asyncore/agent/ntforg/multiple-different-notifications-at-once.py>` script.
+
+See also: :doc:`library reference </docs/contents>`.
diff --git a/docs/source/examples/v3arch/asyncore/agent/ntforg/snmp-versions.rst b/docs/source/examples/v3arch/asyncore/agent/ntforg/snmp-versions.rst
index 2b56cba..bcc51e7 100644
--- a/docs/source/examples/v3arch/asyncore/agent/ntforg/snmp-versions.rst
+++ b/docs/source/examples/v3arch/asyncore/agent/ntforg/snmp-versions.rst
@@ -4,36 +4,48 @@
Various SNMP versions
----------------------
-.. include:: /../../examples/v3arch/asyncore/agent/ntforg/trap-v1.py
+.. include:: /../../examples/v3arch/asyncore/agent/ntforg/v1-trap.py
:start-after: """
:end-before: """#
-.. literalinclude:: /../../examples/v3arch/asyncore/agent/ntforg/trap-v1.py
+.. literalinclude:: /../../examples/v3arch/asyncore/agent/ntforg/v1-trap.py
:start-after: """#
:language: python
-:download:`Download</../../examples/v3arch/asyncore/agent/ntforg/trap-v1.py>` script.
+:download:`Download</../../examples/v3arch/asyncore/agent/ntforg/v1-trap.py>` script.
-.. include:: /../../examples/v3arch/asyncore/agent/ntforg/trap-v2c.py
+.. include:: /../../examples/v3arch/asyncore/agent/ntforg/v2c-trap.py
:start-after: """
:end-before: """#
-.. literalinclude:: /../../examples/v3arch/asyncore/agent/ntforg/trap-v2c.py
+.. literalinclude:: /../../examples/v3arch/asyncore/agent/ntforg/v2c-trap.py
:start-after: """#
:language: python
-:download:`Download</../../examples/v3arch/asyncore/agent/ntforg/trap-v2c.py>` script.
+:download:`Download</../../examples/v3arch/asyncore/agent/ntforg/v2c-trap.py>` script.
-.. include:: /../../examples/v3arch/asyncore/agent/ntforg/trap-v3.py
+.. include:: /../../examples/v3arch/asyncore/agent/ntforg/v3-trap.py
:start-after: """
:end-before: """#
-.. literalinclude:: /../../examples/v3arch/asyncore/agent/ntforg/trap-v3.py
+.. literalinclude:: /../../examples/v3arch/asyncore/agent/ntforg/v3-trap.py
:start-after: """#
:language: python
-:download:`Download</../../examples/v3arch/asyncore/agent/ntforg/trap-v3.py>` script.
+:download:`Download</../../examples/v3arch/asyncore/agent/ntforg/v3-trap.py>` script.
+.. include:: /../../examples/v3arch/asyncore/agent/ntforg/usm-md5-none.py
+ :start-after: """
+ :end-before: """#
+
+.. literalinclude:: /../../examples/v3arch/asyncore/agent/ntforg/usm-md5-none.py
+ :start-after: """#
+ :language: python
+
+:download:`Download</../../examples/v3arch/asyncore/agent/ntforg/usm-md5-none.py>` script.
+
+
+See also: :doc:`library-reference </docs/contents>`.
diff --git a/docs/source/examples/v3arch/asyncore/agent/ntforg/transport-tweaks.rst b/docs/source/examples/v3arch/asyncore/agent/ntforg/transport-tweaks.rst
index e949255..a387896 100644
--- a/docs/source/examples/v3arch/asyncore/agent/ntforg/transport-tweaks.rst
+++ b/docs/source/examples/v3arch/asyncore/agent/ntforg/transport-tweaks.rst
@@ -4,13 +4,26 @@
Transport tweaks
----------------
-.. include:: /../../examples/v3arch/asyncore/agent/ntforg/trap-v1-from-specific-address.py
+.. include:: /../../examples/v3arch/asyncore/agent/ntforg/send-notification-over-ipv4-and-ipv6.py
:start-after: """
:end-before: """#
-.. literalinclude:: /../../examples/v3arch/asyncore/agent/ntforg/trap-v1-from-specific-address.py
+.. literalinclude:: /../../examples/v3arch/asyncore/agent/ntforg/send-notification-over-ipv4-and-ipv6.py
:start-after: """#
:language: python
-:download:`Download</../../examples/v3arch/asyncore/agent/ntforg/trap-v1-from-specific-address.py>` script.
+:download:`Download</../../examples/v3arch/asyncore/agent/ntforg/send-notification-over-ipv4-and-ipv6.py>` script.
+
+.. include:: /../../examples/v3arch/asyncore/agent/ntforg/send-packet-from-specific-address.py
+ :start-after: """
+ :end-before: """#
+
+.. literalinclude:: /../../examples/v3arch/asyncore/agent/ntforg/send-packet-from-specific-address.py
+ :start-after: """#
+ :language: python
+
+:download:`Download</../../examples/v3arch/asyncore/agent/ntforg/send-packet-from-specific-address.py>` script.
+
+
+See also: :doc:`library reference </docs/contents>`.