Changes between Version 11 and Version 12 of expansion/mezzanine


Ignore:
Timestamp:
07/22/2019 01:07:09 AM (5 years ago)
Author:
Cale Collins
Comment:

rough draft of 16081 with multi AP

Legend:

Unmodified
Added
Removed
Modified
  • expansion/mezzanine

    v11 v12  
    8989=== GW16081 Software support ===
    9090No software support is needed for the GW16081
     91
     92=== 9 radio test
     93
     94GW640x and GW630x J9 slot can be replaced with PCI-e Expansion adapter, contact !sales@gateworks.com for details.  Attaching a GW16081 at that site allows 9 and 8 radios can be populated on those boards respectively.
     95
     96A limiting factor when using Ventana was the address space, Newport has a much larger address space therefore allowing numerous modern devices to be working simultaniously.  For a test 9x GW17032 (WLE900VX, ATH9k) radios were brought up as access points.  This configuration can be achieved very simply using the following steps.
     97
     98- Attach radios to both boards, attach expansion board to SBC.
     99- Attach barrel jack power to expansion board.  The radios are going to draw more power than can be can be provided through the mezzinene expansion header.   
     100- Attach POE, or barrel jack power to SBC.
     101- Using your perfered method install your perfered BSP, during this testing Ubuntu Bionic with 4.20 kernel was used.
     102- Boot Bionic download necessary software and scripts
     103 -
     104{{{
     105apt-get update
     106apt-get install hostapd
     107}}}
     108 - Download hostapd-conf script
     109{{{
     110wget https://raw.githubusercontent.com/Gateworks/meta-gateworks/master/recipes-support/hostapd-conf/hostapd-conf/hostapd-conf
     111}}}
     112 - Add execute permission
     113{{{
     114chmod +x hostapd-conf
     115}}}
     116- Configure radions as AP's
     117 - For a full overview see [wiki:/wireless/wifi#hostapd here]
     118 - Verify available channels
     119{{{
     120./hostapd-conf wlan0
     121}}}
     122  - Output looks like this
     123{{{
     124Available Channel Information on phy0
     125=====================================
     126Band 1:
     127Channel  Freq  Allowed HT Modes
     1280        0000  HT20 HT40 HT40+ HT40-
     1291        2412  HT20 HT40 HT40+
     1302        2417  HT20 HT40 HT40+
     1313        2422  HT20 HT40 HT40+
     1324        2427  HT20 HT40 HT40+
     1335        2432  HT20 HT40 HT40+ HT40-
     1346        2437  HT20 HT40 HT40+ HT40-
     1357        2442  HT20 HT40 HT40+ HT40-
     1368        2447  HT20 HT40 HT40+ HT40-
     1379        2452  HT20 HT40 HT40+ HT40-
     13810       2457  HT20 HT40 HT40-
     13911       2462  HT20 HT40 HT40-
     140
     141Band 2:
     142Channel  Freq  Allowed HT Modes
     1430        0000  HT20 HT40 HT40+ HT40- VHT20 VHT40 VHT80
     14436       5180  HT20 HT40 HT40+ VHT20 VHT40 VHT80
     14540       5200  HT20 HT40 HT40- VHT20 VHT40 VHT80
     14644       5220  HT20 HT40 HT40+ VHT20 VHT40 VHT80
     14748       5240  HT20 HT40 HT40- VHT20 VHT40 VHT80
     148144      5720  HT20 HT40 HT40- VHT20 VHT40 VHT80
     149149      5745  HT20 HT40 HT40+ VHT20 VHT40 VHT80
     150153      5765  HT20 HT40 HT40- VHT20 VHT40 VHT80
     151157      5785  HT20 HT40 HT40+ VHT20 VHT40 VHT80
     152161      5805  HT20 HT40 HT40- VHT20 VHT40 VHT80
     153165      5825  HT20 HT40 HT40+ VHT20 VHT40 VHT80
     154}}}
     155 - Using this information create .conf file for each radio
     156{{{
     157./hostapd-conf wlan0 testlan0 161 VHT80 testlan0
     158}}}
     159 - Using this information create .conf file for each radio
     160{{{
     161./hostapd-conf wlan0 testlan0 161 VHT80 testlan0
     162}}}
     163- Launch hostapd using .conf files and background processes. 
     164{{{
     165hostapd hostapd-phy0.conf &
     166}}}
     167- Output looks like this
     168{{{
     169wlan0: interface state UNINITIALIZED->HT_SCAN
     170Using interface wlan0 with hwaddr 04:f0:21:3e:59:74 and ssid "testlan0"
     171wlan0: interface state HT_SCAN->ENABLED
     172wlan0: AP-ENABLED
     173}}}
     174- Enjoy your AP's
     175
    91176
    92177