最近我收到了官方Raspberry Pi WiFi加密狗,里面有BCM43143芯片组。通过pi识别Wifi,但我需要hostapd.conf的驱动程序名称
以下是该产品的链接: https://www.adafruit.com/product/2638 https://www.raspberrypi.org/products/usb-wifi-dongle/
这是我的lsmod输出:
Module Size Used by
xt_conntrack 2939 1
ipt_MASQUERADE 974 1
nf_nat_masquerade_ipv4 1901 1 ipt_MASQUERADE
iptable_nat 1787 1
nf_conntrack_ipv4 13413 2
nf_defrag_ipv4 1287 1 nf_conntrack_ipv4
nf_nat_ipv4 4867 1 iptable_nat
nf_nat 12659 2 nf_nat_ipv4,nf_nat_masquerade_ipv4
nf_conntrack 78061 5 nf_nat,nf_nat_ipv4,xt_conntrack,nf_nat_masquerade_ipv4,nf_conntrack_ipv4
iptable_mangle 1372 0
nf_log_ipv4 3849 0
nf_log_common 2941 1 nf_log_ipv4
xt_LOG 1223 0
iptable_filter 1260 1
ip_tables 11623 3 iptable_filter,iptable_mangle,iptable_nat
x_tables 13630 6 ip_tables,ipt_MASQUERADE,xt_conntrack,xt_LOG,iptable_filter,iptable_mangle
brcmfmac 178225 0
brcmutil 5711 1 brcmfmac
cfg80211 419759 1 brcmfmac
rfkill 16659 1 cfg80211
snd_bcm2835 19739 0
snd_pcm 74833 1 snd_bcm2835
bcm2835_gpiomem 3023 0
snd_timer 18164 1 snd_pcm
snd 52116 3 snd_bcm2835,snd_timer,snd_pcm
uio_pdrv_genirq 2966 0
uio 8228 1 uio_pdrv_genirq
ipv6 341380 34
注意:我已尝试brcmfmac
和cfg80211
作为我的驱动程序名称。
答案 0 :(得分:0)
cfg80211是一个内核配置框架,而brcmfmac是FullMAC驱动程序的名称,它实现了cfg80211与Broadcom无线设备交互所需的接口。 这些都是内核本身存在的内核概念。用户交互是通过nl80211接口实现的。 你应该设置
驱动= nl80211
在hostapd.conf文件中。
示例可以在https://wireless.wiki.kernel.org/en/users/documentation/hostapd找到。