How can I update a row from an SNMP table using the SNMP4J library? I found the method:
TableUtils.createRow(Target target,OID rowStatusColumnOID,OID rowIndex,VariableBinding[] values)
to create a row, but it doesn't have a method to update?
You cant use TableUtils for that. See instead Snmp::send which quoting its javadoc :
Sends a PDU to the given target and returns the received response PDU.