WEP网络的hostapd配置

问题描述 投票:1回答:1

我想使用hostapd在WEP模式下创建伪造的接入点。我发现了一些这样的配置示例:

interface=wlan0
driver=nl80211
ssid=myAp
hw_mode=g
channel=1
macaddr_acl=0
auth_algs=3
ignore_broadcast_ssid=0
wep_default_key=1
wep_key1="abcde"
wep_key_len_broadcast="5"
wep_key_len_unicast="5"
wep_rekey_period=300

它正确地在WEP模式下创建了接入点。但是,当我尝试连接到该伪造的访问点时,它仍处于身份验证状态,无法连接到该访问点。有帮助吗?

hostapd wep
1个回答
0
投票

我唯一想到的就是从wek_key1中删除引号。

我在raspbian指南上找到了此文件,用于设置网桥:

https://www.raspberrypi.org/documentation/configuration/wireless/access-point.md#internet-sharing

© www.soinside.com 2019 - 2024. All rights reserved.