Skip to content

Commit

Permalink
Removed general SNMP articles. Revised other docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
lextm committed Oct 6, 2024
1 parent 5932769 commit 8e3e25e
Show file tree
Hide file tree
Showing 17 changed files with 51 additions and 3,663 deletions.
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ We provide security updates for each version until its End-of-Life (EOL) date. B
| 7.0 | 7.0.4 | 2025-03-11 | Supported for 6 months after 7.1.0 |
| 6.2 | 6.2.6 | 2025-08-22 | Supported for 1 year after 7.0.0 |
| 6.1 | 6.1.4 | 2025-01-12 | Supported for 6 months after 6.2.0 |
| 6.0 | 6.0.13 | 2024-09-23 | Supported for 6 months after 6.1.0 |
| 6.0 | 6.0.13 | 2024-09-23 | Reached EOL |
| 5.1 | 5.1.0 | 2024-08-31 | Reached EOL |
| 5.0 | 5.0.13 | 2024-08-31 | Reached EOL |
| < 5.0 | 4.4.12 | 2024-08-31 | Reached EOL |
Expand Down
2 changes: 0 additions & 2 deletions docs/source/docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ Documentation
.. toctree::
:maxdepth: 2

/docs/snmp-history
/docs/snmp-design
/docs/pysnmp-architecture
/docs/pysnmp-hlapi-tutorial
/docs/api-reference
440 changes: 0 additions & 440 deletions docs/source/docs/mib-object-instances.svg

This file was deleted.

1,063 changes: 0 additions & 1,063 deletions docs/source/docs/nms-components.svg

This file was deleted.

552 changes: 0 additions & 552 deletions docs/source/docs/oid-tree-mibs.svg

This file was deleted.

373 changes: 0 additions & 373 deletions docs/source/docs/oid-tree.svg

This file was deleted.

2 changes: 1 addition & 1 deletion docs/source/docs/pysnmp-design.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 2 additions & 8 deletions docs/source/docs/pysnmp-hlapi-tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Common Operations

In this tutorial we will gradually build and run a few different
SNMP command requests and notifications. We will be using PySNMP
synchronous :doc:`high-level API </docs/api-reference>`
asyncio based :doc:`high-level API </docs/api-reference>`
which is the simplest to use.

Creating SNMP Engine
Expand Down Expand Up @@ -40,7 +40,7 @@ Making SNMP Query
-----------------

We will send SNMP GET command to read a MIB object from SNMP agent.
For that purpose we will call synchronous, high-level
For that purpose we will call asyncio based, high-level
:py:func:`~pysnmp.hlapi.v3arch.asyncio.getCmd` function.
Other SNMP commands can be used in a vary similar way by calling
corresponding functions.
Expand Down Expand Up @@ -262,12 +262,6 @@ Reading Scalar Value
We are finally in a position to send SNMP query and hopefully receive
something meaningful in response.
The distinctive feature of synchronous API is that it is built around
the idea of Python generator. Any function invocation ends up with a
generator object. Iteration over the generator object performs actual
SNMP communication. On each iteration SNMP message gets built and sent
out, response is awaited, received and parsed.
.. code-block:: python
>>> from pysnmp.hlapi.v3arch.asyncio import *
Expand Down
278 changes: 0 additions & 278 deletions docs/source/docs/snmp-apps.svg

This file was deleted.

Loading

0 comments on commit 8e3e25e

Please sign in to comment.