在hostapd配置中启用n模式

时间:2014-11-07 11:44:48

标签: wifi

我需要启用n模式的wifi(bgn)。我知道在hostapd中指定了wifi配置。但我无法在任何地方找到如何启用“只有n模式”的模式。在hostapd中。我正在使用wl1273l芯片,它具有bgna功能。我需要在hostapd中指定任何行吗?.i尝试了以下内容 ieee80211=1
wmm_enabled=1 nl80211=1

但失败了。我阅读了hostapd文档,但没有关于n mode.only关于bga的数据。如果知道任何事情请回答

1 个答案:

答案 0 :(得分:1)

下面粘贴的这些配置行是n模式的相关配置参数。 您可以查看此conf以查找要用于hostapd的任何参数:

http://w1.fi/gitweb/gitweb.cgi?p=hostap.git;a=blob_plain;f=hostapd/hostapd.conf

我的帖子有趣的额外内容:

只是配置这些没有为我的nix路由器启用n模式。对邻近的SSID进行hostapd检查。如果有很多,它将不会激活辅助n通道。 快速的inSSIDer扫描显示我的邻居实际上正在使用辅助频道。显然,许多路由器没有内置的这种检查(如RFC中所述)。 我使用下面url中描述的补丁来禁用neigboring网络检查,并强制hostapd以n模式运行。

http://www.brunsware.de/blog/gentoo/hostapd-40mhz-disable-neighbor-check.html

这些是n模式配置行:

# ieee80211n: Whether IEEE 802.11n (HT) is enabled
# 0 = disabled (default)
# 1 = enabled
# Note: You will also need to enable WMM for full HT functionality.
ieee80211n=1
#
# Default WMM parameters (IEEE 802.11 draft; 11-03-0504-03-000e):
# for 802.11a or 802.11g networks
# These parameters are sent to WMM clients when they associate.
# The parameters will be used by WMM clients for frames transmitted to the
# access point.
#
# note - txop_limit is in units of 32microseconds
# note - acm is admission control mandatory flag. 0 = admission control not
# required, 1 = mandatory
# note - here cwMin and cmMax are in exponent form. the actual cw value used
# will be (2^n)-1 where n is the value given here
#
wmm_enabled=1
wmm_ac_bk_cwmin=4
wmm_ac_bk_cwmax=10
wmm_ac_bk_aifs=7
wmm_ac_bk_txop_limit=0
wmm_ac_bk_acm=0
wmm_ac_be_aifs=3
wmm_ac_be_cwmin=4
wmm_ac_be_cwmax=10
wmm_ac_be_txop_limit=0
wmm_ac_be_acm=0
wmm_ac_vi_aifs=2
wmm_ac_vi_cwmin=3
wmm_ac_vi_cwmax=4
wmm_ac_vi_txop_limit=94
wmm_ac_vi_acm=0
wmm_ac_vo_aifs=2
wmm_ac_vo_cwmin=2
wmm_ac_vo_cwmax=3
wmm_ac_vo_txop_limit=47
wmm_ac_vo_acm=0