@@ -1350,13 +1350,13 @@ Radio object extensions
13501350In addition to the default *NetJSON Radio object options *, the ``OpenWrt `` backend
13511351also requires setting the following additional options for each radio in the list:
13521352
1353- +--------------+---------+-----------------------------------------------+
1354- | key name | type | allowed values |
1355- +==============+=========+===============================================+
1356- | ``driver `` | string | mac80211, atheros, ath5k, ath9k, broadcom |
1357- +--------------+---------+-----------------------------------------------+
1358- | ``protocol `` | string | 802.11a, 802.11b, 802.11g, 802.11n, 802.11ac |
1359- +--------------+---------+-----------------------------------------------+
1353+ +--------------+---------+--------------------------------------------------------- +
1354+ | key name | type | allowed values |
1355+ +==============+=========+========================================================= +
1356+ | ``driver `` | string | mac80211, atheros, ath5k, ath9k, broadcom |
1357+ +--------------+---------+--------------------------------------------------------- +
1358+ | ``protocol `` | string | 802.11a, 802.11b, 802.11g, 802.11n, 802.11ac, 802.11ax |
1359+ +--------------+---------+--------------------------------------------------------- +
13601360
13611361Radio example
13621362~~~~~~~~~~~~~
@@ -1417,7 +1417,7 @@ Automatic channel selection example
14171417~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
14181418
14191419If you need to use the "automatic channel selection" feature of OpenWRT, you must set
1420- the channel to ``0 `` and, unless you are using neither **802.11n ** nor **802.11ac **,
1420+ the channel to ``0 `` and, unless you are using neither **802.11n ** nor **802.11ac ** nor ** 802.11ax ** ,
14211421you must set the ``hwmode `` property to tell OpenWRT which band to use
14221422(11g for 2.4 Ghz, 11a for 5 GHz).
14231423
@@ -1498,6 +1498,38 @@ UCI output::
14981498 option phy 'phy0'
14991499 option type 'mac80211'
15001500
1501+ 802.11ax example
1502+ ~~~~~~~~~~~~~~~~
1503+
1504+ In the following example we show how to configure an *802.11ax * capable radio:
1505+
1506+ .. code-block :: python
1507+
1508+ {
1509+ " radios" : [
1510+ {
1511+ " name" : " radio0" ,
1512+ " phy" : " phy0" ,
1513+ " driver" : " mac80211" ,
1514+ " protocol" : " 802.11ax" ,
1515+ " channel" : 36 ,
1516+ " channel_width" : 80 ,
1517+ }
1518+ ]
1519+ }
1520+
1521+ UCI output::
1522+
1523+ package wireless
1524+
1525+ config wifi-device 'radio0'
1526+ option channel '36'
1527+ option htmode 'HE80'
1528+ option hwmode '11a'
1529+ option phy 'phy0'
1530+ option type 'mac80211'
1531+
1532+
15011533Static Routes
15021534-------------
15031535
0 commit comments