Is there a BPF expression that would only capture arp-reply packets? Currently, I am using Pcap4J and the following BPF expression:
arp and dst host host and ether dst mac
where host is the IP address of my device and mac is the MAC address of my primary network interface. Unfortunately, when packets are captured, this filter allows ARP broadcast requests to also be captured, so I have to take an extra step to check if the operation field of the ARP header is 2 and not 1.
6:2
index is doing? – Prescience