Arduino_SNMP
Arduino_SNMP copied to clipboard
SNMP Agent built with Arduino
Hi, I am using your great library to send temperature SET traps to my PC every minute when over a particular threshold and its working well. The problem I have...
I need to provide a read-only changing integer so i think i need to use the addDynamicIntegerHandler. The challenge for me is that the SNMPAgent instance is a class member...
When this agent receives an SNMP message encoded using long form length fields (header & length longer than 2 bytes) there is an issue with the following function in the...
I have a system with snmp agent working correctly when I configure the agent as public,public. but the manager has an snmp communities password and it seems that for this...
Maybe I'm just doing it wrong but I can't get the example to work "as-is". For the ESP32_SNMP example all I manage to get is STA_DISCONNECTED in the serial monitor....
I have a trap pointer declared with trap = new SNMPTrap("public", SNMP_VERSION_2C); and after sending the trap I want to delete the object so it doesn't take up memory and...
I am trying to point the addReadWriteStringHandler() to a char array within a global structure to allow a GET and SET to be performed on it and I am having...
Hi. Since you recently added the "addDynamicReadOnly" callbacks (by the way, they are all named addDynamicReadOnly except for the integer one which is missing the "ReadOnly" part, maybe you should...
I try to use your code on an Arduino Mega 2560 attached to an ethernet shield. I cannot compile the project because I have a lot of libraries missing. In...
Hi I am a novice when it comes to SNMP so maybe this is just an self induced coding problem. I have followed the example code to send a SNMP...