pysnmp icon indicating copy to clipboard operation
pysnmp copied to clipboard

Python SNMP library

Results 136 pysnmp issues
Sort by recently updated
recently updated
newest added

I have a target machine which uses 32 BIT python. My pc is having 64 BIT python. I want to cross compile the pysnmp or any other python package for...

``` find . -iname '*.py' | xargs -P 4 -I{} python -Wall -m py_compile {} ./pysnmp/hlapi/v3arch/asyncore/sync/cmdgen.py:18: DeprecationWarning: invalid escape sequence \* """Creates a generator to perform one or more SNMP...

``` import asyncio from pysnmp.hlapi.asyncio import * @asyncio.coroutine def run(ip, varBinds): snmpEngine = SnmpEngine() initialVarBinds = varBinds while True: (errorIndication, errorStatus, errorIndex, varBindTable) = yield from nextCmd( snmpEngine, CommunityData('xlcom'), UdpTransportTarget((ip,...

I am using nextCmd method in pysnmp.hlapi to fetch information. But I also watch the network and saw that every SNMP request is sent from another port from sender device....

On the 32 BIT target machine I am getting the following error when running the command: >>> import pysnmp.hlapi Traceback (most recent call last): File "", line 1, in File...

Using pysnmp 4.4.9 Example: from MIB http://mibs.snmplabs.com/asn1/IEEE8023-LAG-MIB ``` dot3adAggPartnerAdminPortAlgorithm OBJECT-TYPE SYNTAX OCTET STRING (SIZE (4)) MAX-ACCESS read-write STATUS current DESCRIPTION "This object identifies the value for the algorithm of the...

**pysnmp ver: 4.4.12** Thank you for your open source pysnmp, it's a great thing! I got a wrong in using pysnmp. I tried to get an object value by using...

Hi, I have a script developed on a previous release of PySNMP and I need to use it on a server that has 4.4.12 installed. I tried it and it...

We used to work with PySNMP version 4.3.1 to receive SNMP V3 traps, and it worked perfectly. Recently, we upgraded to version 4.4.12, and the traps were not received anymore....

Add [Diffie–Hellman USM key](https://en.wikipedia.org/wiki/Diffie–Hellman_key_exchange) support as defined by [RFC2786](https://tools.ietf.org/html/rfc2786).

enhancement