Description: Looks for ARP anomalies from the host's side.
What The Data Shows: Shows all ARP entries as well as the total entries on a host.
SQL:
SELECT address, mac, COUNT(mac) AS mac_count
FROM arp_cache
WHERE mac NOT LIKE '01:00:5E%'
AND mac NOT LIKE 'ff:ff:ff%'
GROUP BY mac HAVING count(mac) > 1;