Name | snmpsim JSON |
Version |
1.1.7
JSON |
| download |
home_page | https://github.com/lextudio/snmpsim |
Summary | SNMP Simulator is a tool that acts as multitude of SNMP Agents built into real physical devices, from SNMP Manager's point of view. Simulator builds and uses a database of physical devices' SNMP footprints to respond like their original counterparts do. |
upload_time | 2024-09-13 07:57:37 |
maintainer | None |
docs_url | None |
author | Ilya Etingof |
requires_python | <4.0,>=3.8 |
license | BSD-2-Clause |
keywords |
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# SNMP Simulator
[![Become a Sponsor](https://img.shields.io/badge/Become%20a%20Sponsor-lextudio-orange.svg?style=for-readme)](https://github.com/sponsors/lextudio)
[![PyPI](https://img.shields.io/pypi/v/snmpsim.svg)](https://pypi.python.org/pypi/snmpsim)
[![PyPI Downloads](https://img.shields.io/pypi/dd/snmpsim)](https://pypi.python.org/pypi/snmpsim/)
[![Python Versions](https://img.shields.io/pypi/pyversions/snmpsim.svg)](https://pypi.python.org/pypi/snmpsim/)
[![GitHub license](https://img.shields.io/badge/license-BSD-blue.svg)](https://raw.githubusercontent.com/lextudio/snmpsim/master/LICENSE.rst)
This is a pure-Python, open source and free implementation of SNMP agents simulator
distributed under 2-clause [BSD license](https://www.pysnmp.com/snmpsim/license.html).
## Features
* SNMPv1/v2c/v3 support
* SNMPv3 USM supports MD5/SHA/SHA224/SHA256/SHA384/SHA512 auth and
DES/3DES/AES128/AES192/AES256 privacy crypto algorithms
* Runs over IPv4 and/or IPv6 transports
* Simulates many EngineID's, each with its own set of simulated objects
* Varies response based on SNMP Community, Context, source/destination addresses and ports
* Can gather and store snapshots of SNMP Agents for later simulation
* Can run simulation based on MIB files, snmpwalk and sapwalk output
* Can gather simulation data from network traffic or tcpdump snoops
* Can gather simulation data from external program invocation or a SQL database
* Can trigger SNMP TRAP/INFORMs on SET operations
* Capable to simultaneously simulate tens of thousands of Agents
* Offers REST API based [control plane](https://www.pysnmp.com/snmpsim-control-plane)
* Gathers and reports extensive activity metrics
* Pure-Python, easy to deploy and highly portable
* Can be extended by loadable Python snippets
## Download
SNMP simulator software is freely available for download from
[PyPI](https://pypi.org/project/snmpsim/) and
[project site](https://docs.lextudio.com/snmpsim/quick-start).
## Installation
Just run:
```bash
$ pip install snmpsim
```
## How to use SNMP simulator
Once installed, invoke `snmpsim-command-responder` and point it to a directory
with simulation data:
``` bash
$ snmpsim-command-responder --data-dir=./data --agent-udpv4-endpoint=127.0.0.1:1024
```
Simulation data is stored in simple plaint-text files having OID|TYPE|VALUE
format:
``` bash
$ cat ./data/public.snmprec
1.3.6.1.2.1.1.1.0|4|Linux 2.6.25.5-smp SMP Tue Jun 19 14:58:11 CDT 2007 i686
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.8072.3.2.10
1.3.6.1.2.1.1.3.0|67|233425120
1.3.6.1.2.1.2.2.1.6.2|4x|00127962f940
1.3.6.1.2.1.4.22.1.3.2.192.21.54.7|64x|c3dafe61
...
```
Simulator maps query parameters like SNMP community names, SNMPv3 contexts or
IP addresses into data files.
You can immediately generate simulation data file by querying existing SNMP agent:
``` bash
$ snmpsim-record-commands --agent-udpv4-endpoint=demo.pysnmp.com \
--output-file=./data/public.snmprec
SNMP version 2c, Community name: public
Querying UDP/IPv4 agent at 195.218.195.228:161
Agent response timeout: 3.00 secs, retries: 3
Sending initial GETNEXT request for 1.3.6 (stop at <end-of-mib>)....
OIDs dumped: 182, elapsed: 11.97 sec, rate: 7.00 OIDs/sec, errors: 0
```
Alternatively, you could build simulation data from a MIB file:
``` bash
$ snmpsim-record-mibs --output-file=./data/public.snmprec \
--mib-module=IF-MIB
# MIB module: IF-MIB, from the beginning till the end
# Starting table IF-MIB::ifTable (1.3.6.1.2.1.2.2)
# Synthesizing row #1 of table 1.3.6.1.2.1.2.2.1
...
# Finished table 1.3.6.1.2.1.2.2.1 (10 rows)
# End of IF-MIB, 177 OID(s) dumped
```
Or even sniff on the wire, recover SNMP traffic there and build simulation
data from it.
Besides static files, SNMP simulator can be configured to call its plugin modules
for simulation data. We ship plugins to interface SQL and noSQL databases, file-based
key-value stores and other sources of information.
Besides stand-alone deployment described above, third-party
[SNMP Simulator control plane](https://github.com/lextudio/snmpsim-control-plane)
project offers REST API managed mass deployment of multiple `snmpsim-command-responder`
instances.
## Documentation
Detailed information on SNMP simulator usage could be found at
[snmpsim site](https://www.pysnmp.com/snmpsim/).
## Getting help
If something does not work as expected,
[open an issue](https://github.com/lextudio/pysnmp/issues) at GitHub or
post your question [on Stack Overflow](https://stackoverflow.com/questions/ask).
## Feedback and collaboration
Bug reports, fixes, suggestions, improvements, and your pull requests are very
welcome!
Copyright (c) 2010-2019, [Ilya Etingof](mailto:etingof@gmail.com).
Copyright (c) 2022-2024, [LeXtudio Inc.](mailto:support@lextudio.com).
All rights reserved.
Raw data
{
"_id": null,
"home_page": "https://github.com/lextudio/snmpsim",
"name": "snmpsim",
"maintainer": null,
"docs_url": null,
"requires_python": "<4.0,>=3.8",
"maintainer_email": null,
"keywords": null,
"author": "Ilya Etingof",
"author_email": "etingof@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/0a/e3/cad55059628c554f7d5b2f232307bc21436da2ca246994733f57b6bcbdd0/snmpsim-1.1.7.tar.gz",
"platform": null,
"description": "# SNMP Simulator\n\n[![Become a Sponsor](https://img.shields.io/badge/Become%20a%20Sponsor-lextudio-orange.svg?style=for-readme)](https://github.com/sponsors/lextudio)\n[![PyPI](https://img.shields.io/pypi/v/snmpsim.svg)](https://pypi.python.org/pypi/snmpsim)\n[![PyPI Downloads](https://img.shields.io/pypi/dd/snmpsim)](https://pypi.python.org/pypi/snmpsim/)\n[![Python Versions](https://img.shields.io/pypi/pyversions/snmpsim.svg)](https://pypi.python.org/pypi/snmpsim/)\n[![GitHub license](https://img.shields.io/badge/license-BSD-blue.svg)](https://raw.githubusercontent.com/lextudio/snmpsim/master/LICENSE.rst)\n\nThis is a pure-Python, open source and free implementation of SNMP agents simulator\ndistributed under 2-clause [BSD license](https://www.pysnmp.com/snmpsim/license.html).\n\n## Features\n\n* SNMPv1/v2c/v3 support\n* SNMPv3 USM supports MD5/SHA/SHA224/SHA256/SHA384/SHA512 auth and\n DES/3DES/AES128/AES192/AES256 privacy crypto algorithms\n* Runs over IPv4 and/or IPv6 transports\n* Simulates many EngineID's, each with its own set of simulated objects\n* Varies response based on SNMP Community, Context, source/destination addresses and ports\n* Can gather and store snapshots of SNMP Agents for later simulation\n* Can run simulation based on MIB files, snmpwalk and sapwalk output\n* Can gather simulation data from network traffic or tcpdump snoops\n* Can gather simulation data from external program invocation or a SQL database\n* Can trigger SNMP TRAP/INFORMs on SET operations\n* Capable to simultaneously simulate tens of thousands of Agents\n* Offers REST API based [control plane](https://www.pysnmp.com/snmpsim-control-plane)\n* Gathers and reports extensive activity metrics\n* Pure-Python, easy to deploy and highly portable\n* Can be extended by loadable Python snippets\n\n## Download\n\nSNMP simulator software is freely available for download from\n[PyPI](https://pypi.org/project/snmpsim/) and\n[project site](https://docs.lextudio.com/snmpsim/quick-start).\n\n## Installation\n\nJust run:\n\n```bash\n$ pip install snmpsim\n```\n\n## How to use SNMP simulator\n\nOnce installed, invoke `snmpsim-command-responder` and point it to a directory\nwith simulation data:\n\n``` bash\n$ snmpsim-command-responder --data-dir=./data --agent-udpv4-endpoint=127.0.0.1:1024\n```\n\nSimulation data is stored in simple plaint-text files having OID|TYPE|VALUE\nformat:\n\n``` bash\n$ cat ./data/public.snmprec\n1.3.6.1.2.1.1.1.0|4|Linux 2.6.25.5-smp SMP Tue Jun 19 14:58:11 CDT 2007 i686\n1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.8072.3.2.10\n1.3.6.1.2.1.1.3.0|67|233425120\n1.3.6.1.2.1.2.2.1.6.2|4x|00127962f940\n1.3.6.1.2.1.4.22.1.3.2.192.21.54.7|64x|c3dafe61\n...\n```\n\nSimulator maps query parameters like SNMP community names, SNMPv3 contexts or\nIP addresses into data files.\n\nYou can immediately generate simulation data file by querying existing SNMP agent:\n\n``` bash\n$ snmpsim-record-commands --agent-udpv4-endpoint=demo.pysnmp.com \\\n --output-file=./data/public.snmprec\nSNMP version 2c, Community name: public\nQuerying UDP/IPv4 agent at 195.218.195.228:161\nAgent response timeout: 3.00 secs, retries: 3\nSending initial GETNEXT request for 1.3.6 (stop at <end-of-mib>)....\nOIDs dumped: 182, elapsed: 11.97 sec, rate: 7.00 OIDs/sec, errors: 0\n```\n\nAlternatively, you could build simulation data from a MIB file:\n\n``` bash\n$ snmpsim-record-mibs --output-file=./data/public.snmprec \\\n --mib-module=IF-MIB\n# MIB module: IF-MIB, from the beginning till the end\n# Starting table IF-MIB::ifTable (1.3.6.1.2.1.2.2)\n# Synthesizing row #1 of table 1.3.6.1.2.1.2.2.1\n...\n# Finished table 1.3.6.1.2.1.2.2.1 (10 rows)\n# End of IF-MIB, 177 OID(s) dumped\n```\n\nOr even sniff on the wire, recover SNMP traffic there and build simulation\ndata from it.\n\nBesides static files, SNMP simulator can be configured to call its plugin modules\nfor simulation data. We ship plugins to interface SQL and noSQL databases, file-based\nkey-value stores and other sources of information.\n\nBesides stand-alone deployment described above, third-party\n[SNMP Simulator control plane](https://github.com/lextudio/snmpsim-control-plane)\nproject offers REST API managed mass deployment of multiple `snmpsim-command-responder`\ninstances.\n\n## Documentation\n\nDetailed information on SNMP simulator usage could be found at\n[snmpsim site](https://www.pysnmp.com/snmpsim/).\n\n## Getting help\n\nIf something does not work as expected,\n[open an issue](https://github.com/lextudio/pysnmp/issues) at GitHub or\npost your question [on Stack Overflow](https://stackoverflow.com/questions/ask).\n\n## Feedback and collaboration\n\nBug reports, fixes, suggestions, improvements, and your pull requests are very\nwelcome!\n\nCopyright (c) 2010-2019, [Ilya Etingof](mailto:etingof@gmail.com).\nCopyright (c) 2022-2024, [LeXtudio Inc.](mailto:support@lextudio.com).\nAll rights reserved.\n",
"bugtrack_url": null,
"license": "BSD-2-Clause",
"summary": "SNMP Simulator is a tool that acts as multitude of SNMP Agents built into real physical devices, from SNMP Manager's point of view. Simulator builds and uses a database of physical devices' SNMP footprints to respond like their original counterparts do.",
"version": "1.1.7",
"project_urls": {
"Homepage": "https://github.com/lextudio/snmpsim",
"Repository": "https://github.com/lextudio/snmpsim"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "0a3f24dc63f2867b3636067c3dd110c7e377fa7e822402fa9b22bebb7a5363fa",
"md5": "66a48f85404661d572ba8bc433ecf3c1",
"sha256": "c5f9dac3066d7debae3eb6dbf030e35bbb2f6a6c5d11feefd9d0a4b46680c575"
},
"downloads": -1,
"filename": "snmpsim-1.1.7-py3-none-any.whl",
"has_sig": false,
"md5_digest": "66a48f85404661d572ba8bc433ecf3c1",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<4.0,>=3.8",
"size": 226001,
"upload_time": "2024-09-13T07:57:35",
"upload_time_iso_8601": "2024-09-13T07:57:35.933030Z",
"url": "https://files.pythonhosted.org/packages/0a/3f/24dc63f2867b3636067c3dd110c7e377fa7e822402fa9b22bebb7a5363fa/snmpsim-1.1.7-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0ae3cad55059628c554f7d5b2f232307bc21436da2ca246994733f57b6bcbdd0",
"md5": "95697ba55a692eec0d3ccdae7324b3bc",
"sha256": "22a0d81a2d2b00ae9f3d7eec1bcf4c12e09e637dd88504d896e841a05cb67ea0"
},
"downloads": -1,
"filename": "snmpsim-1.1.7.tar.gz",
"has_sig": false,
"md5_digest": "95697ba55a692eec0d3ccdae7324b3bc",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "<4.0,>=3.8",
"size": 240005,
"upload_time": "2024-09-13T07:57:37",
"upload_time_iso_8601": "2024-09-13T07:57:37.165888Z",
"url": "https://files.pythonhosted.org/packages/0a/e3/cad55059628c554f7d5b2f232307bc21436da2ca246994733f57b6bcbdd0/snmpsim-1.1.7.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-09-13 07:57:37",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "lextudio",
"github_project": "snmpsim",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "snmpsim"
}