1

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?

k1eran
  • 4,492
  • 8
  • 50
  • 73
iness31
  • 11
  • 2

1 Answers1

0

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.

k1eran
  • 4,492
  • 8
  • 50
  • 73