Aruba access points
Find all hosts that are Aruba wireless access points
The following query finds any host in the network (that is, a device attached to a collected network device) whose mac addresses indicates that it is manufactured by Aruba.
foreach device in network.devices
foreach host in device.hosts
where isPresent(host.macAddress)
let vendors = ouiVendors(host.macAddress)
where Vendor.ARUBA in vendors
select {
deviceName: device.name,
addresses: host.addresses,
macAddress: host.macAddress,
interfaces: host.interfaces,
vendors
}
Please refer to the Documentation for more information on the ouiVendors(mac) function and refer to the Data
Model for possible values for the Vendor type.