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

Hi, I am getting the error mentioned in the title when trying to run the below script. Could you please help with this? g = getCmd(SnmpEngine(), CommunityData("private"), UsmUserData('private', authKey='authkey1', privKey='authkey1',...

Hi, I am using pysnmp library to listen traps sent to my server from FQDN address on port 162. Below is the code for FQDN address. It is taken from...

If you look at https://files.pythonhosted.org/packages/4e/75/72f64c451bf5884715f84f8217b69b4025da0b67628d611cd14a5b7db217/pysnmp-4.4.12.tar.gz You don't get any hlapi.v1arch and others.

Hi. I have a problem with a pysnmp server. It can't decrypt a trap with parameters: MD5+AES256. Other combinations of security are work (MD5+3DESEDE or SHA256+AES256). Versions 4.4.9 and 4.4.12...

I am trying to run a script to send a trap from Linux server, however even though pysnmp is installed in "/usr/local/lib/python3.9/site-packages" . When trying to execute the script I...

i want to implement the snmp agent. at the agent side, i want to specify the source address and each source address can use different community, what should id do?...

`from pysnmp.hlapi import * def despliega(iterador): while True: try: errorIndication, errorStatus, errorIndex, varBinds = next(iterador) if not errorIndication and not errorStatus: for varBind in varBinds: print(varBind) else: print("Error:",errorStatus) except StopIteration:...

I am confused. I didn't do anything,But sometimes my code doesn't work ERROR:conpot.protocols.snmp.conpot_cmdrsp:poll error: Traceback (most recent call last): ; File "/usr/local/lib/python3.6/site-packages/pysnmp/carrier/asyncore/dispatch.py", line 46, in runDispatcher use_poll=True, map=self.__sockMap, count=1) ;...

I have forked the projects to a new github org. This project has not been updated in two years. https://github.com/pysnmp The tags I used were based on the last stable...

String comparison between the Python tuple version is not working with Python 3.10. Located [here](https://github.com/etingof/pysnmp/blob/v4.4.12/pysnmp/carrier/asyncio/dgram/base.py#L45): ```py IS_PYTHON_344_PLUS = platform.python_version_tuple() >= ('3', '4', '4') ``` `platform.python_version_tuple()` returns `('3', '10', '0')` and...