1 聯網環境
yum install libpcap
yum install libpcap-devel
2 測試 vi test.c
#include <pcap.h>
#include <stdio.h>
int main()
{
char errBuf[PCAP_ERRBUF_SIZE], * device;
device = pcap_lookupdev(errBuf);
if(device)
{
printf("success: device: %s\n", device);
}
else
{
printf("error: %s\n", errBuf);
}
return 0;
}
3 編譯
gcc test.c -o test -lpcap
4 運行
./test
success: device:enp0s3
參考:
https://blog.csdn.net/xygl2009/article/details/19400533