Skip to content

Commit

Permalink
Merge branch 'docs-develop' into docs-partial-snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
sfiorani authored Dec 17, 2024
2 parents 00adf85 + f37d3c1 commit efdfb9e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/gateway-configuration/network-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ Name | Type | De
`net.interface.<interface>.config.wifi.master.driver` | String | The driver used for the connection |
`net.interface.<interface>.config.wifi.master.passphrase` | Password | The password for the access point |
`net.interface.<interface>.config.wifi.master.ssid` | String | The SSID of the access point |
`net.interface.<interface>.config.wifi.master.securityType` | String | The security protocol for the wireless network; possible values are `SECURITY_NONE`, `SECURITY_WEP`, `SECURITY_WPA`, `SECURITY_WPA2`, `SECURITY_WPA_WPA2` | `SECURITY_NONE`
`net.interface.<interface>.config.wifi.master.securityType` | String | The security protocol for the wireless network; possible values are `SECURITY_NONE`, `SECURITY_WEP`, `SECURITY_WPA`, `SECURITY_WPA2`, `SECURITY_WPA_WPA2`, `SECURITY_WPA3`, `SECURITY_WPA2_WPA3` (see [here](../wifi-configuration#notes-about-wpa3-security) for more details about WPA3) | `SECURITY_NONE`
`net.interface.<interface>.config.wifi.master.mode` | String | The mode of the wireless connection; for the access point mode set it to `MASTER` | `MASTER`
`net.interface.<interface>.config.wifi.master.channel` | String | The channel to be used for the access point | 1
`net.interface.<interface>.config.wifi.master.radioMode` | String | Specify the 802.11 radio mode; possible values are `RADIO_MODE_80211a`, `RADIO_MODE_80211b`, `RADIO_MODE_80211g`, `RADIO_MODE_80211nHT20`, `RADIO_MODE_80211_AC` | `RADIO_MODE_80211b`
Expand All @@ -193,7 +193,7 @@ Name | Type | D
`net.interface.<interface>.config.wifi.infra.mode` | String | The mode of the wireless connection; for station mode set to `INFRA` | `INFRA`
`net.interface.<interface>.config.wifi.infra.pingAccessPoint` | Boolean | Enable pinging the access point after connection is established | false
`net.interface.<interface>.config.wifi.infra.driver` | String | The driver used for the connection |
`net.interface.<interface>.config.wifi.infra.securityType` | String | The security protocol for the wireless network; possible values are `SECURITY_NONE`, `SECURITY_WEP`, `SECURITY_WPA`, `SECURITY_WPA2`, `SECURITY_WPA_WPA2` | `SECURITY_NONE`
`net.interface.<interface>.config.wifi.infra.securityType` | String | The security protocol for the wireless network; possible values are `SECURITY_NONE`, `SECURITY_WEP`, `SECURITY_WPA`, `SECURITY_WPA2`, `SECURITY_WPA_WPA2`, `SECURITY_WPA3`, `SECURITY_WPA2_WPA3` (see [here](../wifi-configuration#notes-about-wpa3-security) for more details about WPA3) | `SECURITY_NONE`
`net.interface.<interface>.config.wifi.infra.groupCiphers` | String | Group ciphers i.e. group/broadcast encryption algorithms which prevents connections to Wi-Fi networks that do not utilize one of the algorithms set, possible values are `CCMP`, `TKIP`, and `CCMP_TKIP` | `CCMP_TKIP`
`net.interface.<interface>.config.wifi.infra.pairwiseCiphers` | String | Pairwise ciphers i.e. pairwise encryption algorithms which prevents connections to Wi-Fi networks that do not utilize one of the algorithms set, possible values are `CCMP`, `TKIP`, and `CCMP_TKIP` | `CCMP_TKIP`

Expand Down
11 changes: 9 additions & 2 deletions docs/gateway-configuration/wifi-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,7 @@ In addition to the options described above, the **Wireless** configuration displ

## Notes about WPA3 security

The support to WPA3 security feature is experimental. Before using it, update your system with the latest changes and check that the WiFi module installed on you device has the latest firmware.
To check if an interface supports the new WPA3 security, run the following command:
The support to WPA3 security feature is experimental and disabled by default. Before using it, update your system with the latest changes and check that the WiFi module installed on you device has the latest firmware. To check if an interface supports the new WPA3 security, run the following command:

```
iw phy | grep -i sae
Expand All @@ -107,3 +106,11 @@ and verify is the following output is present
```
Device supports SAE with AUTHENTICATE command
```

To enable the WPA3 WiFi Security in Eclipse Kura, edit the `/opt/eclipse/kura/user/kura_custom.properties` and add the following line:

```
kura.wpa3.wifi.security.enable=true
```

In this way the WPA3 and WPA2/WPA3 entries will be available in the Wireless Tab on the web UI and the wifi interface will be configurable with the new security using the REST APIs.

0 comments on commit efdfb9e

Please sign in to comment.