Disable Cisco ACI Plugin

Perform the steps in this section to disable the Cisco ACI plugin.

Query to Check Whether any Devices are Using Cisco ACI Plugin

Execute the following query to see whether any devices are using the Cisco ACI plugin.

Query

$ mysqldata -e "SELECT deviceinfo.id, deviceinfo.name, deviceinfo.mgt_address \
FROM net.deviceinfo INNER JOIN net.plugin_map \
ON plugin_map.dev_id = deviceinfo.id \
WHERE plugin_map.plugin_id = 22 AND plugin_map.enabled"

If the query returns any devices, manually edit each device and uncheck the ACI Plugin.

Query to Check Whether Newly Added Devices are Getting Added by Cisco ACI Collector

Execute the following query to see whether any devices are using the Cisco ACI collector.

Query

$ mysqldata -e "SELECT deviceinfo.id, deviceinfo.name, deviceinfo.mgt_address \
FROM net.deviceinfo INNER JOIN net.plugin_map \
ON plugin_map.dev_id = deviceinfo.id \
WHERE plugin_map.plugin_id = 17 AND plugin_map.enabled"