有没有办法在 ANSI C 中获取目标 mac 地址
如果目标 IP 已知,是否可以使用 ANSI C 获取目标 MAC 地址?我最好通过系统调用来完成此操作,以便内核处理这一切,并且我可以利用 ARP 缓存。我知道我可以构建并发送我自己的 ARP 请求,但是除非我自己实现,否则我不会拥有缓存功能等,所以感觉让内核处理它是可行的方法。
Is there a way to get the destination MAC address, if the destination IP is known, using ANSI C? I would preferably do it with a system call so the kernel deals with it all and I can take advantage of the ARP cache. I know I can build and send my own ARP request, but then I would not have the caching functionality etc unless I implement it myself so it feels like letting the kernel handling it is the way to go.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不是一个确切的答案,因为它不是 ANSI C,但您可以从
/proc/net/arp
(即在 Linux 中)读取 arp 表。这就是arp
的外观。对于任何其他操作系统,最简单的方法是使用 strace 或等效 arp-cache-showing 实用程序上的等效项。Not an exact answer, because it's not ANSI C, but you can read the arp table from
/proc/net/arp
(in Linux, that is). That's wherearp
looks. For any other OS, the easiest way is to usestrace
or an equivalent on the equivalent arp-cache-showing utility.我决定做的是发送我自己的 ARP 数据包并将其缓存在我的应用程序内部。如果目的地在我的本地网络之外,我会解析
/proc/net/route
并提取给定接口的网关,并将 arp 数据包发送到网关以获取其 mac 地址(因为这是目的地 mac 地址)发往本地网络之外的数据包)。What I decided to do was to send my own ARP packets and caching it internaly in my application. If the destination is outside my local network I parse
/proc/net/route
and extract the gateway for the given interface and send an arp packet to the gateway to get it's macaddress (since that is the destination macaddress of packets destined outside the local network).