From owner-freebsd-wireless@FreeBSD.ORG Thu Jun 7 09:30:42 2012 Return-Path: Delivered-To: freebsd-wireless@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 380CB106564A for ; Thu, 7 Jun 2012 09:30:42 +0000 (UTC) (envelope-from jhugo@meraka.csir.co.za) Received: from marge.meraka.csir.co.za (marge.meraka.csir.co.za [IPv6:2001:4200:7000:3::1]) by mx1.freebsd.org (Postfix) with ESMTP id B51578FC15 for ; Thu, 7 Jun 2012 09:30:40 +0000 (UTC) Received: from jeep.localnet (unknown [IPv6:2001:4200:7000:3:223:aeff:fea7:a3c2]) by marge.meraka.csir.co.za (Postfix) with ESMTP id 47E1CD0CC61 for ; Thu, 7 Jun 2012 11:30:38 +0200 (SAST) From: Johann Hugo Date: Thu, 7 Jun 2012 11:30:37 +0200 User-Agent: KMail/1.13.7 (FreeBSD/9.0-RELEASE; KDE/4.7.3; amd64; ; ) X-KMail-Markup: true MIME-Version: 1.0 To: freebsd-wireless@freebsd.org Message-Id: <201206071130.37411.jhugo@meraka.csir.co.za> Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: 9-stable with -head ath/net80211 stacks X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2012 09:30:42 -0000 Hi Got 11n up and running in hostap mode on 9-stable with -head ath/net80211 stacks. Unfortunately I only have one 802.11n adapter to play with. The only 11n client I could find was my Samsung Galaxy S2 and it works very well. The only problem that I got so far is that 11n only works if I don't set the country or regdomain. AP-vlan:~ # ifconfig wlan0 wlan0: flags=8943 metric 0 mtu 1500 ether 00:80:48:66:54:b4 nd6 options=29 media: IEEE 802.11 Wireless Ethernet autoselect mode 11na status: running ssid my-n channel 52 (5260 MHz 11a ht/20) bssid 00:80:48:66:54:b4 country US ecm authmode OPEN privacy OFF txpower 23 mcastrate 6 mgmtrate 6 scanvalid 60 -ht -htcompat -ampdu ampdulimit 64k ampdudensity 8 -amsdu smps wme burst dtimperiod 1 -dfs ----------------------------------------------------------------------- If I change the country to ZA then it defaults to 11a ----------------------------------------------------------------------- AP-vlan:~ # ifconfig wlan0 down AP-vlan:~ # ifconfig wlan0 country ZA AP-vlan:~ # ifconfig wlan0 up AP-vlan:~ # ifconfig wlan0 wlan0: flags=8943 metric 0 mtu 1500 ether 00:80:48:66:54:b4 nd6 options=29 media: IEEE 802.11 Wireless Ethernet autoselect mode 11a status: running ssid my-n channel 52 (5260 MHz 11a) bssid 00:80:48:66:54:b4 regdomain NONE country ZA ecm authmode OPEN privacy OFF txpower 24 mcastrate 6 mgmtrate 6 scanvalid 60 wme burst dtimperiod 1 -dfs ----------------------------------------------------------------------- If I change it back to country US then it also defaults to 11a, but the regdomain also changes to FCC ----------------------------------------------------------------------- AP-vlan:~ # ifconfig wlan0 down AP-vlan:~ # ifconfig wlan0 country US AP-vlan:~ # ifconfig wlan0 up AP-vlan:~ # ifconfig wlan0 wlan0: flags=8943 metric 0 mtu 1500 ether 00:80:48:66:54:b4 nd6 options=29 media: IEEE 802.11 Wireless Ethernet autoselect mode 11a status: running ssid my-n channel 36 (5180 MHz 11a) bssid 00:80:48:66:54:b4 regdomain FCC country US ecm authmode OPEN privacy OFF txpower 17 mcastrate 6 mgmtrate 6 scanvalid 60 wme burst dtimperiod 1 -dfs Johann