Skip to content
Snippets Groups Projects
Commit b7ac32ef authored by David Bauer's avatar David Bauer Committed by Martin Weinelt
Browse files

docs: include OWE documentation

parent 9720be51
No related branches found
No related tags found
No related merge requests found
...@@ -42,10 +42,14 @@ ...@@ -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 = {
......
...@@ -130,8 +130,15 @@ wifi24 \: optional ...@@ -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 ...@@ -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',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment