I need to look up MAC address in the local network and I'm using Linux. What I do is send a ARP request with libnet, but after I send 3 requests, the cache still won't update. I use wireshark to catch the packets. From wireshark, I did get 3 ARP replays, after each of my ARP request. Does anyone know how come the ARP cache won't update?

link|improve this question
feedback

1 Answer

up vote 3 down vote accepted

The Linux kernel does not accept unsolicited ARP by default. Since the request was sent by your userspace application and not by the kernel, the kernel sees the reply as "unsolicited".

You can change this default in /proc/sys/net/ipv4/conf/*/arp_accept (either on a per-device basis or across all devices).

link|improve this answer
Thanks for the quick reply!!! Now I see. Still, is there another way to do it other then changing /proc/sys/net/ipv4/conf/*/arp_accept? by ioctl ? – Aitjcize Jul 29 '10 at 6:26
Why do you need another way? What's wrong with that way? You can use "all" instead of * if you dont know what interface to set it on. – camh Jul 29 '10 at 10:18
@Aitjcize: /proc/sys/ is an interface to sysctl, however it is the preferred interface on Linux. You can change it programatically with a simple fopen(); fprintf(); fclose(); sequence. – caf Jul 29 '10 at 13:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.