Arduino_SNMP_Manager
Arduino_SNMP_Manager copied to clipboard
SNMP Bulk Walk
Hi,
I'm trying to walk through OIDs to get the alarms table on ".1.3.6.1.2.1.33.1.6.2".
Do you have any advice to how can I achieve it?
Thanks
Hi @zerala the library doesn't implement GETNEXT, which is what would be required to be able to walk a table. Adding GETBULK on top of GETNEXT would make it more efficient, but this capability is also not implemented.
With the current implementation, you need to query each OID separately, which I accept may not be ideal.