DefaultPDUFactory defaultPDUFactory = new DefaultPDUFactory(PDU.GETBULK);
tableUtils = new TableUtils(snmp, defaultPDUFactory);
tableUtils.setIgnoreMaxLexicographicRowOrderingErrors(300);
List<VariableBinding[]> resultList=new ArrayList<>();
OID[] columns = new OID[oids.size()];
for (int i = 0; i < oids.size(); i++) {
columns[i] = new OID(oids.get(i));
}
List<TableEvent> events = tableUtils.getTable(target, columns, null, null);
I have set the target timeout property,but it seems not work.How to set gettable timeout?