Changes between Version 30 and Version 31 of expansion/gw16167


Ignore:
Timestamp:
02/25/2026 11:53:15 PM (4 hours ago)
Author:
Ryan Erbstoesser
Comment:

add channel information

Legend:

Unmodified
Added
Removed
Modified
  • expansion/gw16167

    v30 v31  
    521521The !HaLow channels are mapped to standard 802.11 channels:
    522522 * US
    523 ||= S1G Op Class =||= Global Op Class =||= Channel Bandwidth =||= Channel Number =||= Center Frequency =||
     523||= S1G Op Class =||= Global Op Class =||= Channel Bandwidth =||= HaLow Channel Number =||= Center Frequency =||
    524524|| 1 || 68 || 1 || 1 || 902.5 ||
    525525|| 1 || 68 || 1 || 3 || 903.5 ||
     
    571571|| 2 || 71 || 8 || 44 || 924.0 ||
    572572
     573To see what frequency the radio is configured for, use the following command and example with channel=28 and op_class=71 in the host ap conf file:
     574{{{
     575root@OpenWrt:~# morse_cli channel
     576Full Channel Information
     577        Operating Frequency: 916000 kHz
     578        Operating BW: 8 MHz
     579        Primary BW: 2 MHz
     580        Primary Channel Index: 0
     581root@OpenWrt:~#
     582}}}
     583
     584Note, some OS's will report the HaLow radio working over 5GHz due to the standard WiFi not being aware of sub-1GHz.
     585
     586There are times that Linux can recognize the interface as a generic 5Ghz radio and allow you to configure it as an AP or a STA. Linux does not understand that the channels map to the sub-1GHz band. The bandwidths will map as follows:
     587 - 20MHz = 1MHz sub-1G
     588 - 40MHz = 2MHz sub-1G
     589 - 80MHz = 4MHz sub-1G
     590 - 160MHz = 8MHz sub-1G
     591
     592Example with channel=28 and op_class=71 in the host ap conf file::
     593{{{
     594root@OpenWrt:~# iw dev wlan0 info
     595Interface wlan0
     596        ifindex 9
     597        wdev 0x1
     598        addr 0c:bf:74:00:27:10
     599        ssid HaLow-WPA2
     600        type AP
     601        wiphy 0
     602        channel 100 (5500 MHz), width: 160 MHz, center1: 5570 MHz
     603        txpower 20.00 dBm
     604        multicast TXQ:
     605                qsz-byt qsz-pkt flows   drops   marks   overlmt hashcol tx-bytes        tx-packets
     606                0       0       0       0       0       0       0       0               0
     607
     608}}}
    573609
    574610== Configuration (AP, STA, Mesh)