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

With code that works with pysnmp 4.3.3, in 4.4.12 I get a WrongValueError() in trying to write ifEntry (((1, 3, 6, 1, 2, 1, 2, 2, 1, 1, 1), 1),)...

Hi there. I am trying to execute SNMP manager and SNMP agent in the same compuer for debugging purposes. Is there any guide on SNMP docs to execute SNMP manager?...

PySNMP is crashing when using SNMPv3 and sha/aes with SmithSNMP server. Test script: ``` #!/usr/bin/python from pysnmp.hlapi import * errorIndication, errorStatus, errorIndex, varBinds = next( getCmd(SnmpEngine(), UsmUserData(userName='admin', authKey='88888888', privKey='88888888', authProtocol=usmHMACSHAAuthProtocol,...

/media/flash/pysnmp # python3 setup.py install Traceback (most recent call last): File "setup.py", line 179, in setup(**params) File "/core.py", line 108, in setup File "/dist.py", line 267, in __init__ File "/dist.py",...

Hello guys, I've been using pysnmp.hlapi.asyncio.nextCmd like this to access tables: ``` (errorIndication, errorStatus, errorIndex, varBinds) = await pysnmp.hlapi.asyncio.nextCmd( self.snmpEngine, pysnmp.hlapi.auth.CommunityData(communityIndex=self.__community, mpModel=self.__version), pysnmp.hlapi.asyncio.transport.UdpTransportTarget((self.__host, 161)), pysnmp.hlapi.context.ContextData(), *varBinds, lookupNames=True, lookupValues=True, lexicographicMode=False )...

The [XDG specs](https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html) define a more appropriate location for compiled MIBs than the current default of `~/.pysnmp/mibs/`: > $XDG_CACHE_HOME defines the base directory relative to which user specific non-essential data...

Hi Team, just want to confirm the reason of the differences between this two line: https://github.com/etingof/pysnmp/commit/250deca6ed1866699ae980238592c00a423e5a67#diff-4e807450d493a1baaa5a0ebc69b510a7R97 https://github.com/etingof/pysnmp/commit/250deca6ed1866699ae980238592c00a423e5a67#diff-4e807450d493a1baaa5a0ebc69b510a7L109 here is my previous post: https://github.com/etingof/pysnmp/commit/250deca6ed1866699ae980238592c00a423e5a67#commitcomment-39991227 why the timeout is different ?

Without these communication protocols as part of [RFC 5953](https://tools.ietf.org/html/rfc5953), I am forced to use the less user-friendly net-snmp when I could be using your more human-readable API!