XEROX hosts
Find all XEROX hosts
The following query finds any host in the network (that is, a device attached to a collected network device) whose mac address is assigned to XEROX.
foreach device in network.devices
foreach host in device.hosts
let assigneeName = ouiAssignee(host.macAddress)
where isPresent(assigneeName)
where matches(toUpperCase(assigneeName), "*XEROX*")
select {
deviceName: device.name,
addresses: host.addresses,
macAddress: host.macAddress,
interfaces: host.interfaces,
assigneeName
}
Please refer to the Documentation for more information on the ouiAssignee(mac) function.