Fixed
Details
Assignee
Seth LegerSeth LegerReporter
Andy EllsworthAndy EllsworthLabels
Components
Fix versions
Priority
Major
Details
Details
Assignee
Seth Leger
Seth LegerReporter
Andy Ellsworth
Andy EllsworthLabels
Components
Fix versions
Priority
PagerDuty
PagerDuty
PagerDuty
Created August 29, 2011 at 5:38 PM
Updated January 27, 2017 at 4:20 PM
Resolved October 27, 2011 at 4:23 PM
On SNMP-capable nodes, the MAC address of physical interfaces does not always show up in the DB (and therefore is missing from the web UI), even when the SNMP agent correctly reports the MAC address.
Example:
Cisco 2800 series router with nodeid 17:
snmpget -v2c -c somestring cisco2800.mycorp IF-MIB::ifName.3 IF-MIB::ifPhysAddress.3 IF-MIB::ifName.4 IF-MIB::ifPhysAddress.4
IF-MIB::ifName.3 = STRING: Gi0/0
IF-MIB::ifPhysAddress.3 = STRING: 0:16:47:41:36:0
IF-MIB::ifName.4 = STRING: Gi0/1
IF-MIB::ifPhysAddress.4 = STRING: 0:16:47:41:36:1
opennms=# select nodeid,snmpifindex,snmpifname,snmpphysaddr from snmpinterface where nodeid=17 and (snmpifindex='3' or snmpifindex='4');
nodeid | snmpifindex | snmpifname | snmpphysaddr
---------------------------------+-------------- 17 | 3 | Gi0/0 |
17 | 4 | Gi0/1 |
(2 rows)