Changes between Version 21 and Version 22 of expansion/gw16159


Ignore:
Timestamp:
05/15/2025 07:49:13 PM (7 weeks ago)
Author:
Tim Harvey
Comment:

added 802.11S MESH configuration example

Legend:

Unmodified
Added
Removed
Modified
  • expansion/gw16159

    v21 v22  
    519519iperf3 -c 192.168.1.1
    520520}}}
     521 * 802.11S MESH using WPA3:
     522{{{#!bash
     523cat << EOF > wpa_supplicant_s1g.conf
     524country=US
     525ctrl_interface=/var/run/wpa_supplicant_s1g
     526sae_pwe=1
     527
     528max_peer_links=10
     529mesh_fwding=1
     530network={
     531        ssid="HaLow-WPA3"
     532        key_mgmt=SAE
     533        mode=5
     534        # 8MHz width at 916MHz
     535        channel=28
     536        op_class=71
     537        country="US"
     538        s1g_prim_chwidth=1
     539        s1g_prim_1mhz_chan_index=3
     540        mesh_rssi_threshold=-85
     541        sae_password="strongpassword123"
     542        pairwise=CCMP
     543        ieee80211w=2
     544        beacon_int=1000
     545}
     546EOF
     547wpa_supplicant_s1g -iwlan0 -c wpa_supplicant_s1g.conf &
     548}}}
     549
    521550
    522551[=#performance]