QT Windows 实现调用Windows API获取ARP 表

简介

使用ping方式获取网络可访问或者存在的设备发现部分会无法ping通但实际网络上存在此设备, 但使用arp -a却可以显示出来, 所以现在使用windows API的方式获取arp 表。

实现

参考Windows提供的示例转化成Qt

Qt .pro

cpp 复制代码
LIBS += -liphlpapi
    LIBS += -lws2_32

main.cpp

cpp 复制代码
#include <QCoreApplication>
#include <QDebug>
#include <winsock2.h>
#include <windows.h>
#include <ws2ipdef.h>
#include <iphlpapi.h>
#include <netioapi.h>

int main()
{
    PMIB_IPNET_TABLE2 pIpNetTable2 = NULL;
    DWORD dwSize = 0;
    unsigned long status = 0;

    // 获取ARP表
    status = GetIpNetTable2(AF_INET, &pIpNetTable2);
    if (status != NO_ERROR)
    {
        printf("GetIpNetTable2 failed (error code %lu)\n", status);
        free(pIpNetTable2);
        return 1;
    }

    // 遍历ARP表并打印每项
    for (DWORD i = 0; i < pIpNetTable2->NumEntries; i++)
    {
        MIB_IPNET_ROW2 row = pIpNetTable2->Table[i];
        QString ip = QString::fromStdString(inet_ntoa(row.Address.Ipv4.sin_addr));
        QString mac = QString::asprintf("%02X-%02X-%02X-%02X-%02X-%02X",
                                                             row.PhysicalAddress[0], row.PhysicalAddress[1],
                                                             row.PhysicalAddress[2], row.PhysicalAddress[3],
                                                             row.PhysicalAddress[4], row.PhysicalAddress[5]);
        if (ip.startsWith("192.168.3") && mac != QString("00-00-00-00-00-00") && row.State != NlnsUnreachable) // 过滤192.168.3网段, mac地址不能为零, 可到达
        {
            qDebug() << "IP: " << ip << ", mac: " << mac;
        }
    }

    // 释放缓冲区
    free(pIpNetTable2);

    return 0;
}

显示

参考

getIpNetTable2 函数 (netioapi.h)

相关推荐
自由的好好干活1 小时前
使用Qoder编写ztdaq的C#跨平台示例总结
linux·windows·c#·qoder
x***44015 小时前
Windows操作系统部署Tomcat详细讲解
java·windows·tomcat
CryptoPP6 小时前
使用 KLineChart 这个轻量级的前端图表库
服务器·开发语言·前端·windows·后端·golang
2739920299 小时前
AES加解密(QT)
qt
w***744016 小时前
SQL Server2022版详细安装教程(Windows)
windows
颜*鸣&空19 小时前
QT实现串口通信+VSPD+串口调试工具
开发语言·qt
IT逆夜1 天前
实现Yum本地仓库自动同步的完整方案(CentOS 7)
linux·运维·windows
v***59831 天前
DeepSeek API 调用 - Spring Boot 实现
windows·spring boot·后端
颜*鸣&空1 天前
QT程序实现串口通信案例
开发语言·qt
Main. 241 天前
从0到1学习Qt -- 常见控件之显示类控件
qt·学习