docs: include OWE documentation

This commit is contained in:
David Bauer 2020-03-03 20:15:28 +01:00 committed by Martin Weinelt
parent 9720be5112
commit b7ac32efbc
2 changed files with 17 additions and 4 deletions

View File

@ -42,10 +42,14 @@
-- Wireless channel. -- Wireless channel.
channel = 1, channel = 1,
-- ESSID used for client network. -- ESSIDs used for client network.
ap = { ap = {
ssid = 'alpha-centauri.freifunk.net', -- ssid = 'alpha-centauri.freifunk.net', (optional - SSID for open client network)
-- disabled = true, -- (optional) -- disabled = true, -- (optional)
-- Configuration for a non-backward compatible OWE network below.
-- owe_ssid = 'owe.alpha-centauri.freifunk.net', -- (optional - SSID for OWE client network)
-- owe_transition_mode = true, -- (optional - enables transition-mode - requires ssid as well as owe_ssid)
}, },
mesh = { mesh = {

View File

@ -130,8 +130,15 @@ wifi24 \: optional
This will only affect new installations. This will only affect new installations.
Upgrades will not change the disabled state. Upgrades will not change the disabled state.
``ap`` requires a single parameter, a string, named ``ssid`` which sets the ``ap`` holds the client network configuration.
interface's ESSID. This is the WiFi the clients connect to. To create an unencrypted client network, a string named ``ssid`` which sets the
interface's ESSID is required. This is the wireless network clients connect to.
For an OWE secured network, the ``owe_ssid`` string has to be set. It sets the
SSID for the opportunistically encrypted wireless network, to which compatible
clients can connect to.
To utilize the OWE transition mode, ``owe_transition_mode`` has to be set to true.
Note that for the transition mode to work, both ``ssid`` as well as ``owe_ssid``
have to be enabled.
``mesh`` requires a single parameter, a string, named ``id`` which sets the ``mesh`` requires a single parameter, a string, named ``id`` which sets the
mesh id, also visible as an open WiFi in some network managers. Usually you mesh id, also visible as an open WiFi in some network managers. Usually you
@ -147,6 +154,8 @@ wifi24 \: optional
channel = 11, channel = 11,
ap = { ap = {
ssid = 'alpha-centauri.freifunk.net', ssid = 'alpha-centauri.freifunk.net',
owe_ssid = 'owe.alpha-centauri.freifunk.net',
owe_transition_mode = true,
}, },
mesh = { mesh = {
id = 'ueH3uXjdp', id = 'ueH3uXjdp',