当前位置 博文首页 > 码农之家:【WLAN】【软件】NXP芯片方案用户态和内核态通讯方式

    码农之家:【WLAN】【软件】NXP芯片方案用户态和内核态通讯方式

    作者:[db:作者] 时间:2021-07-30 20:55

    一、前言

    之前已经撰文阐述过mtk芯片方案的用户态和内核态通讯方式,实际上这些方式并非mtk芯片方案所特用,其他芯片方案也是可以使用的。
    本文将以NXP方案常用的方式作一总结,以对之前mtk方案常用的方式作一补充。

    二、具体方式说明

    1、hostapd

    hostapd is a user space daemon for access point and authentication servers. It implements IEEE 802.11 access point management, IEEE 802.1X/WPA/WPA2/EAP Authenticators, RADIUS client, EAP server, and RADIUS authentication server. The current version supports Linux (Host AP, madwifi, Prism54 drivers) and FreeBSD (net80211).
    hostapd is designed to be a "daemon" program that runs in the background and acts as the backend component controlling authentication. hostapd supports separate frontend programs and an example text-based frontend, hostapd_cli, is included with hostapd.
    
    • 简单说,hostapd是一个工作于用户态的daemon程序,用于配置AP和认证服务器等,其中hostapd_cli是一个hostapd的前端命令行。
    • hostapd自带一个默认配置文件hostapd.conf&#
    cs