作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
在 Linux 上从数据链路 (MAC) 层读取数据包的最简单/最短/最容易的方法是什么?
有人可以给我们一个代码片段来告诉我们如何做到这一点吗?
我们为什么需要它?我们正在开发一种网络摄像机,其中千兆位芯片仅实现数据链路层。由于我们没有实现 IP 堆栈的资源,我们需要仅使用 MAC 地址交换数据包。
最佳答案
这是我正在寻找的代码片段:
#include <stdio.h>
#include <stdlib.h>
#include <sys/socket.h>
#include <linux/if_packet.h>
#include <linux/if_ether.h>
#include <linux/if_arp.h>
int main()
{
int s = socket(AF_PACKET, SOCK_RAW, htons(ETH_P_ALL));
if (s == -1)
{
printf("Error while creating socket. Aborting...\n");
return 1;
}
void* buffer = (void*)malloc(ETH_FRAME_LEN);
while(1)
{
int receivedBytes = recvfrom(s, buffer, ETH_FRAME_LEN, 0, NULL, NULL);
printf("%d bytes received\n", receivedBytes);
int i;
for (i = 0; i < receivedBytes; i++)
{
printf("%X ", ((unsigned char*)buffer)[i]);
}
printf("\n");
}
return 0;
}
关于linux - 在 Linux 中读取数据链路 (MAC) 层数据包,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22885350/
我是一名优秀的程序员,十分优秀!