forked from etingof/pysmi
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
32 changed files
with
494 additions
and
144 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
|
||
The *mibcopy* tool | ||
The *mibcopy* Tool | ||
================== | ||
|
||
.. toctree:: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
|
||
The *mibdump* tool | ||
The *mibdump* Tool | ||
================== | ||
|
||
.. toctree:: | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,24 @@ | ||
.. include:: /includes/_links.rst | ||
|
||
Download & Install | ||
================== | ||
Downloads | ||
========= | ||
|
||
The best way to obtain SNMP SMI library is by running `pip`: | ||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
The PySMI software is provided under terms and conditions of BSD-style | ||
license, and can be freely downloaded from `PySMI PyPI package`_. | ||
|
||
Besides official releases, if you want to try the cutting-edge development | ||
code then it could be taken from `PySMI GitHub repository`_. It may | ||
be less stable in regards to general operation and changes to public | ||
interfaces, but it's first to contain fixes to recently discovered bugs. | ||
|
||
The best way to obtain PySMI and dependencies is to run: | ||
|
||
.. code-block:: bash | ||
$ virtualenv venv | ||
$ source venv/bin/activate | ||
$ pip install pysmi-lextudio | ||
pip install pysmi-lextudio | ||
Alternatively, you can download the latest release from | ||
`GitHub <https://github.com/lextudio/pysmi/releases>`_ | ||
or `PyPI <https://pypi.org/project/pysmi-lextudio/>`_. | ||
In case of any issues, please open a new `GitHub issue`_ so we could try to | ||
help out. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
.. toctree:: | ||
|
||
.. _LeXtudio Inc.: https://www.lextudio.com | ||
.. _PySNMP PyPI package: http://pypi.python.org/pypi/pysnmp-lextudio | ||
.. _PySMI PyPI package: http://pypi.python.org/pypi/pysmi-lextudio | ||
.. _PySNMP GitHub repository: https://github.com/lextudio/pysnmp | ||
.. _PySMI GitHub repository: https://github.com/lextudio/pysmi | ||
.. _GitHub issue: https://github.com/lextudio/pysnmp/issues/new | ||
.. _Stack Overflow: http://stackoverflow.com/questions/tagged/pysnmp | ||
.. _demo.pysnmp.com: https://www.pysnmp.com/snmp-simulation-service# | ||
.. _mibs.pysnmp.com: https://mibs.pysnmp.com/ | ||
.. _PySMI: https://www.pysnmp.com/pysmi/ | ||
.. _PySNMP: https://www.pysnmp.com/pysnmp/ | ||
.. _SNMP Proxy Forwarder: https://www.pysnmp.com/snmpfwd/ | ||
.. _snmpsim: https://www.pysnmp.com/snmpsim/ | ||
.. _PyASN1: https://pyasn1.readthedocs.io/ | ||
.. _mibdump: https://www.pysnmp.com/pysmi/mibdump | ||
.. _command line tools: https://www.pysnmp.com/snmpclitools/ | ||
.. _Python: https://www.python.org/ | ||
.. _SNMP: https://en.wikipedia.org/wiki/Simple_Network_Management_Protocol | ||
.. _PSF: https://www.python.org/psf/ | ||
.. _ASN.1: https://en.wikipedia.org/wiki/Abstract_Syntax_Notation_One | ||
.. _RFC3413: https://www.ietf.org/rfc/rfc3413.txt | ||
.. _RFC3418: https://www.ietf.org/rfc/rfc3418.txt | ||
.. _pyenv: https://github.com/pyenv/pyenv | ||
.. _pyenv-win: https://github.com/pyenv-win/pyenv-win | ||
.. _Wireshark: https://www.wireshark.org/ | ||
.. _tcpdump: https://www.tcpdump.org/ | ||
.. _Net-SNMP: http://www.net-snmp.org/ | ||
.. _IF-MIB: https://mibs.pysnmp.com/asn1/IF-MIB | ||
.. _IF-MIB.json: https://mibs.pysnmp.com/json/fulltexts/IF-MIB.json | ||
.. _full index: https://mibs.pysnmp.com/json/index.json | ||
.. _SNMP SMI: https://en.wikipedia.org/wiki/Management_information_base |
Oops, something went wrong.