use of org.opennms.netmgt.enlinkd.snmp.CdpGlobalGroupTracker in project opennms by OpenNMS.
the class EnLinkdSnmpIT method testCdpGlobalGroupCollection.
@Test
@JUnitSnmpAgents(value = { @JUnitSnmpAgent(host = RPict001_IP, port = 161, resource = RPict001_SNMP_RESOURCE) })
public void testCdpGlobalGroupCollection() throws Exception {
SnmpAgentConfig config = SnmpPeerFactory.getInstance().getAgentConfig(InetAddress.getByName(RPict001_IP));
String trackerName = "cdpGlobalGroup";
final CdpGlobalGroupTracker cdpGlobalGroup = new CdpGlobalGroupTracker();
try {
m_client.walk(config, cdpGlobalGroup).withDescription(trackerName).withLocation(null).execute().get();
} catch (final InterruptedException e) {
LOG.error("run: Cdp Linkd collection interrupted, exiting", e);
return;
}
assertEquals("r-ro-suce-pict-001.infra.u-ssi.net", cdpGlobalGroup.getCdpDeviceId());
assertEquals(1, cdpGlobalGroup.getCdpGlobalRun().intValue());
assertNull(cdpGlobalGroup.getCdpGlobalDeviceFormat());
}
use of org.opennms.netmgt.enlinkd.snmp.CdpGlobalGroupTracker in project opennms by OpenNMS.
the class EnLinkdSnmpIT method testCdpGlobalGroupCollectionWithGlobalIdFormat.
@Test
@JUnitSnmpAgents(value = { @JUnitSnmpAgent(host = CISCO_WS_C2948_IP, port = 161, resource = CISCO_WS_C2948_SNMP_RESOURCE) })
public void testCdpGlobalGroupCollectionWithGlobalIdFormat() throws Exception {
SnmpAgentConfig config = SnmpPeerFactory.getInstance().getAgentConfig(InetAddress.getByName(CISCO_WS_C2948_IP));
String trackerName = "cdpGlobalGroup";
final CdpGlobalGroupTracker cdpGlobalGroup = new CdpGlobalGroupTracker();
try {
m_client.walk(config, cdpGlobalGroup).withDescription(trackerName).withLocation(null).execute().get();
} catch (final InterruptedException e) {
LOG.error("run: Cdp Linkd collection interrupted, exiting", e);
return;
}
assertEquals("JAB043408B7", cdpGlobalGroup.getCdpDeviceId());
assertEquals(1, cdpGlobalGroup.getCdpGlobalRun().intValue());
assertEquals(3, cdpGlobalGroup.getCdpGlobalDeviceFormat().intValue());
}
use of org.opennms.netmgt.enlinkd.snmp.CdpGlobalGroupTracker in project opennms by OpenNMS.
the class NodeDiscoveryCdp method runCollection.
protected void runCollection() {
final Date now = new Date();
final CdpGlobalGroupTracker cdpGlobalGroup = new CdpGlobalGroupTracker();
SnmpAgentConfig peer = m_linkd.getSnmpAgentConfig(getPrimaryIpAddress(), getLocation());
try {
m_linkd.getLocationAwareSnmpClient().walk(peer, cdpGlobalGroup).withDescription("cdpGlobalGroup").withLocation(getLocation()).execute().get();
} catch (ExecutionException e) {
LOG.info("run: node [{}]: ExecutionException: cdpGlobalGroup: {}", getNodeId(), e.getMessage());
return;
} catch (final InterruptedException e) {
LOG.info("run: node [{}]: InterruptedException: cdpGlobalGroup: {}", getNodeId(), e.getMessage());
return;
}
if (cdpGlobalGroup.getCdpDeviceId() == null) {
LOG.info("run: node [{}]: CDP_MIB not supported", getNodeId());
return;
}
CdpElement cdpElement = cdpGlobalGroup.getCdpElement();
m_linkd.getQueryManager().store(getNodeId(), cdpElement);
if (cdpElement.getCdpGlobalRun() == TruthValue.FALSE) {
LOG.info("run: node [{}]. CDP disabled.", getNodeId());
return;
}
List<CdpLink> links = new ArrayList<>();
CdpCacheTableTracker cdpCacheTable = new CdpCacheTableTracker() {
public void processCdpCacheRow(final CdpCacheRow row) {
links.add(row.getLink());
}
};
try {
m_linkd.getLocationAwareSnmpClient().walk(peer, cdpCacheTable).withDescription("cdpCacheTable").withLocation(getLocation()).execute().get();
} catch (ExecutionException e) {
LOG.info("run: node [{}]: ExecutionException: cdpCacheTable: {}", getNodeId(), e.getMessage());
return;
} catch (final InterruptedException e) {
LOG.info("run: node [{}]: InterruptedException: cdpCacheTable: {}", getNodeId(), e.getMessage());
return;
}
final CdpInterfacePortNameGetter cdpInterfacePortNameGetter = new CdpInterfacePortNameGetter(peer, m_linkd.getLocationAwareSnmpClient(), getLocation(), getNodeId());
for (CdpLink link : links) m_linkd.getQueryManager().store(getNodeId(), cdpInterfacePortNameGetter.get(link));
m_linkd.getQueryManager().reconcileCdp(getNodeId(), now);
}
Aggregations