snmpsim-data-lextudio


Namesnmpsim-data-lextudio JSON
Version 1.0.0 PyPI version JSON
download
home_pagehttps://github.com/lextudio/snmpsim-data
SummaryThis package includes a collection of SNMP dumps from different real-world SNMP-managed devices and software.
upload_time2024-03-24 19:39:38
maintainerNone
docs_urlNone
authorIlya Etingof
requires_python<4.0,>=3.7
licenseBSD-2-Clause
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            
# SNMP Simulation Data

[![PyPI](https://img.shields.io/pypi/v/snmpsim-data.svg?maxAge=2592000)](https://pypi.org/project/snmpsim-data/)
[![Python Versions](https://img.shields.io/pypi/pyversions/snmpsim-data.svg)](https://pypi.org/project/snmpsim-data/)
[![GitHub license](https://img.shields.io/badge/license-BSD-blue.svg)](https://raw.githubusercontent.com/lextudio/snmpsim-data/master/LICENSE.txt)

The `snmpsim-data-lextudio` package contains simulation data for
[snmpsim](https://www.pysnmp.com/snmpsim) - free and open-source SNMP agent simulator.

The package is distributed under 2-clause
[BSD license](https://www.pysnmp.com/snmpsim/license.html).

## Download

SNMP simulation data can be downloaded as a Python package from
[PyPI](https://pypi.org/project/snmpsim-data/).

## Installation

Just run:

```bash
$ pyenv local 3.12
$ pip install pipenv
$ pipenv install snmpsim-data-lextudio
$ pipenv run setup-snmpsim-data snmpsim-data/data
```

> This also install `snmpsim-lextudio` package as a dependency.

## How to use simulation data

Invoke `snmpsimd` and point it to a directory with simulation data:

``` bash
$ pipenv run snmpsimd --data-dir=snmpsim-data/data --agent-udpv4-endpoint=127.0.0.1:1024
```

Simulation data is stored in simple plain-text files having `OID|TYPE|VALUE`
format:

``` bash
$ cat 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 onto data files paths relative to the `data` directory.

## Documentation

Detailed information on SNMP simulator usage could be found at
[snmpsim site](https://www.pysnmp.com/snmpsim/).

## Getting help

If you run into bad simulation data, feel free to
[open an issue](https://github.com/lextudio/pysnmp/issues) on GitHub.

## Contributions

If you have an SNMP-managed device, consider snmpwalk'ing it (or use `snmprec` tool
from `snmpsim` package) and submit a PR offering your data.

Copyright (c) 2019, [Ilya Etingof](mailto:etingof@gmail.com).
Copyright (c) 2024, [LeXtudio Inc.](mailto:support@lextudio.com).
All rights reserved.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/lextudio/snmpsim-data",
    "name": "snmpsim-data-lextudio",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.7",
    "maintainer_email": null,
    "keywords": null,
    "author": "Ilya Etingof",
    "author_email": "etingof@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/e1/13/8a0892b3a459ced5309c6a4fc872bef283db08e81e567322518012f0a4ed/snmpsim_data_lextudio-1.0.0.tar.gz",
    "platform": null,
    "description": "\n# SNMP Simulation Data\n\n[![PyPI](https://img.shields.io/pypi/v/snmpsim-data.svg?maxAge=2592000)](https://pypi.org/project/snmpsim-data/)\n[![Python Versions](https://img.shields.io/pypi/pyversions/snmpsim-data.svg)](https://pypi.org/project/snmpsim-data/)\n[![GitHub license](https://img.shields.io/badge/license-BSD-blue.svg)](https://raw.githubusercontent.com/lextudio/snmpsim-data/master/LICENSE.txt)\n\nThe `snmpsim-data-lextudio` package contains simulation data for\n[snmpsim](https://www.pysnmp.com/snmpsim) - free and open-source SNMP agent simulator.\n\nThe package is distributed under 2-clause\n[BSD license](https://www.pysnmp.com/snmpsim/license.html).\n\n## Download\n\nSNMP simulation data can be downloaded as a Python package from\n[PyPI](https://pypi.org/project/snmpsim-data/).\n\n## Installation\n\nJust run:\n\n```bash\n$ pyenv local 3.12\n$ pip install pipenv\n$ pipenv install snmpsim-data-lextudio\n$ pipenv run setup-snmpsim-data snmpsim-data/data\n```\n\n> This also install `snmpsim-lextudio` package as a dependency.\n\n## How to use simulation data\n\nInvoke `snmpsimd` and point it to a directory with simulation data:\n\n``` bash\n$ pipenv run snmpsimd --data-dir=snmpsim-data/data --agent-udpv4-endpoint=127.0.0.1:1024\n```\n\nSimulation data is stored in simple plain-text files having `OID|TYPE|VALUE`\nformat:\n\n``` bash\n$ cat 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 onto data files paths relative to the `data` directory.\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 you run into bad simulation data, feel free to\n[open an issue](https://github.com/lextudio/pysnmp/issues) on GitHub.\n\n## Contributions\n\nIf you have an SNMP-managed device, consider snmpwalk'ing it (or use `snmprec` tool\nfrom `snmpsim` package) and submit a PR offering your data.\n\nCopyright (c) 2019, [Ilya Etingof](mailto:etingof@gmail.com).\nCopyright (c) 2024, [LeXtudio Inc.](mailto:support@lextudio.com).\nAll rights reserved.\n",
    "bugtrack_url": null,
    "license": "BSD-2-Clause",
    "summary": "This package includes a collection of SNMP dumps from different real-world SNMP-managed devices and software.",
    "version": "1.0.0",
    "project_urls": {
        "Homepage": "https://github.com/lextudio/snmpsim-data",
        "Repository": "https://github.com/lextudio/snmpsim-data"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d3837ab0127805536b264478e124f2e7d990bdb60c3fd9e050aef79674064e34",
                "md5": "160576174fd178ca93393920b6f4d506",
                "sha256": "081439c4df1cf57e1fd5376c03e920ae78bcbbff3cde9afb2a997f613c3fe5a1"
            },
            "downloads": -1,
            "filename": "snmpsim_data_lextudio-1.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "160576174fd178ca93393920b6f4d506",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.7",
            "size": 56666743,
            "upload_time": "2024-03-24T19:39:31",
            "upload_time_iso_8601": "2024-03-24T19:39:31.958428Z",
            "url": "https://files.pythonhosted.org/packages/d3/83/7ab0127805536b264478e124f2e7d990bdb60c3fd9e050aef79674064e34/snmpsim_data_lextudio-1.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e1138a0892b3a459ced5309c6a4fc872bef283db08e81e567322518012f0a4ed",
                "md5": "9fd9179a11ab03edf5094023d4d91857",
                "sha256": "9fb0ee83a9bef0c0ce9c8f4768a5958502cdff9e2ca47e5848b9a6472c82fb2a"
            },
            "downloads": -1,
            "filename": "snmpsim_data_lextudio-1.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "9fd9179a11ab03edf5094023d4d91857",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.7",
            "size": 56614135,
            "upload_time": "2024-03-24T19:39:38",
            "upload_time_iso_8601": "2024-03-24T19:39:38.773753Z",
            "url": "https://files.pythonhosted.org/packages/e1/13/8a0892b3a459ced5309c6a4fc872bef283db08e81e567322518012f0a4ed/snmpsim_data_lextudio-1.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-24 19:39:38",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "lextudio",
    "github_project": "snmpsim-data",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": false,
    "lcname": "snmpsim-data-lextudio"
}
        
Elapsed time: 0.21479s