更新时间:2024-01-22 12:51
这一步需要告诉程序我们的网卡接口,或者让程序自己检测。
下面这段程序检测系统中所有可用的网卡接口并且逐一打印名称和描述信息。
注意:由于是底层的系统调用,所以需要root权限。否则系统会检测不到网卡。
pcap_findalldevs();
代码:
#include
#include <stdlib.h>
#include
int main(int argc, char *argv[])
{
pcap_if_t *alldevs;
pcap_if_t *device;
char errbuf[PCAP_ERRBUF_SIZE];
if(pcap_findalldevs(&alldevs, errbuf) == -1)
{
exit(EXIT_FAILURE);
}
device = alldevs;
for(; device != NULL; device = device->next)
{
}
/* 不再需要设备列表了,释放它 */
pcap_freealldevs(alldevs);
return 0;
}
个人不推荐用,官方也不推荐用pcap_lookupdev()来找网卡,windows 环境推荐 pcap_findalldevs_ex() 。
打开文件句柄使用
pcap_t *handle;
handle = pcap_open_live(device, 1000, 1, 1000, errbuf);
if(handle == NULL)
{
exit(EXIT_FAILURE);
}
mac[0],mac[1],
mac[2], mac[3],
mac[4], mac[5]);
if (pcap_compile(handle, &fp, filter_exp, 0, 0) == -1) {
filter_exp, pcap_geterr(handle));
exit(EXIT_FAILURE);
}
if (pcap_setfilter(handle, &fp) == -1) {
filter_exp, pcap_geterr(handle));
exit(EXIT_FAILURE);
}
pcap_freecode(&fp);
pcap_freealldevs(alldevs);
pcap_setfilter();
pcap_close();