使用libnet发送ARP请求,但收到ARP回复后arp缓存不会更新
我需要在本地网络中查找 MAC 地址,并且我使用的是 Linux。我所做的是使用libnet发送一个ARP请求,但是在我发送3个请求后,缓存仍然不会更新。我使用wireshark来捕获数据包。在每次 ARP 请求之后,我确实从wireshark 获得了 3 次 ARP 重播。有谁知道为什么 ARP 缓存不会更新?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Linux 内核默认不接受未经请求的 ARP。由于请求是由用户空间应用程序而不是内核发送的,因此内核将回复视为“未经请求”。
您可以在
/proc/sys/net/ipv4/conf/*/arp_accept
中更改此默认值(基于每个设备或跨所有设备)。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).