Skip to:
Hello,
Opennms fails to detect SNMP on Dlink DGS 3100-24. I iterates until entry:
DEBUG - Storing Result: alias: ifAdminStatus [.1.3.6.1.2.1.2.2.1.7].[72] = INTEGER: 1DEBUG - Storing Result: alias: ifOperStatus [.1.3.6.1.2.1.2.2.1.8].[72] = INTEGER: 2DEBUG - Storing Result: alias: ifLastChange [.1.3.6.1.2.1.2.2.1.9].[72] = Timeticks: 6082DEBUG - Storing Result: alias: ifName [.1.3.6.1.2.1.31.1.1.1.1].[56] = STRING: 2:6 (323a36)DEBUG - Sending tracker pdu of size 10INFO - IfSnmpCollector: failed to collect System group for 10.9.242.9
And process continues...why IfSnmpCollector failed?
I found that the cause is a timeout. However, the real problem is that the timeout message is not shown in any log. It should be used somewhere in:
org/opennms/netmgt/capsd/IfSnmpCollector.java:public void run() {...}
I'll attach a patch for this last option
Applied this small patch. Marking as fixed.
commit ef8d907e779734471ff518efe5697ab1bca29779
Created an attachment (id=1048)This patch add some lines to check and show error messages while snmpwalking
Hello,
Opennms fails to detect SNMP on Dlink DGS 3100-24. I iterates until entry:
DEBUG - Storing Result: alias: ifAdminStatus [.1.3.6.1.2.1.2.2.1.7].[72] = INTEGER: 1
DEBUG - Storing Result: alias: ifOperStatus [.1.3.6.1.2.1.2.2.1.8].[72] = INTEGER: 2
DEBUG - Storing Result: alias: ifLastChange [.1.3.6.1.2.1.2.2.1.9].[72] = Timeticks: 6082
DEBUG - Storing Result: alias: ifName [.1.3.6.1.2.1.31.1.1.1.1].[56] = STRING: 2:6 (323a36)
DEBUG - Sending tracker pdu of size 10
INFO - IfSnmpCollector: failed to collect System group for 10.9.242.9
And process continues...why IfSnmpCollector failed?
I found that the cause is a timeout. However, the real problem is that the timeout message is not shown in any log. It should be used somewhere in:
org/opennms/netmgt/capsd/IfSnmpCollector.java:
public void run() {
...
}
I'll attach a patch for this last option