How to clear arp cache in linux by program
, not by using arp command? Are there library functions avaliable to implement this?
=========================================================================== EDIT
In linux
, I want to clear arp cache
periodically and send ping packets to find hosts in LAN(by collecting arp response and ICMP reply). As some hosts don't reply ping, I try to receive arp response and ICMP reply in my program. But if arp cache has the IP information, it doesn't send arp request for that IP, and the topology may not be complete. So I want to clear arp cache periodically. How can I clear arp cache periodically in my program?Thanks for your time.