From a652e6c8d2b58afaa739cca2dd751e7568ed828a Mon Sep 17 00:00:00 2001 From: John Crispin Date: Mon, 11 Jul 2022 14:02:04 +0200 Subject: [PATCH] ucentral-schema: add OWE encryption example Signed-off-by: John Crispin --- .../files/etc/ucentral/examples/owe.json | 97 +++++++++++++++++++ 1 file changed, 97 insertions(+) create mode 100644 feeds/ucentral/ucentral-schema/files/etc/ucentral/examples/owe.json diff --git a/feeds/ucentral/ucentral-schema/files/etc/ucentral/examples/owe.json b/feeds/ucentral/ucentral-schema/files/etc/ucentral/examples/owe.json new file mode 100644 index 000000000..417fc2ec2 --- /dev/null +++ b/feeds/ucentral/ucentral-schema/files/etc/ucentral/examples/owe.json @@ -0,0 +1,97 @@ +{ + "uuid": 2, + "radios": [ + { + "band": "5G", + "country": "CA", + "channel-mode": "HE", + "channel-width": 80, + "channel": 36 + } + ], + + "interfaces": [ + { + "name": "WAN", + "role": "upstream", + "services": [ "lldp" ], + "ethernet": [ + { + "select-ports": [ + "WAN*" + ] + } + ], + "ipv4": { + "addressing": "dynamic" + }, + "ssids": [ + { + "name": "OWE", + "wifi-bands": [ + "5G" + ], + "bss-mode": "ap", + "encryption": { + "proto": "owe", + "ieee80211w": "optional" + } + } + ] + }, + { + "name": "LAN", + "role": "downstream", + "services": [ "ssh", "lldp" ], + "ethernet": [ + { + "select-ports": [ + "LAN*" + ] + } + ], + "ipv4": { + "addressing": "static", + "subnet": "192.168.1.1/24", + "dhcp": { + "lease-first": 10, + "lease-count": 100, + "lease-time": "6h" + } + }, + "ssids": [ + { + "name": "OpenWifi", + "wifi-bands": [ + "5G" + ], + "bss-mode": "ap", + "encryption": { + "proto": "psk2", + "key": "OpenWifi", + "ieee80211w": "optional" + } + } + ] + + } + ], + "metrics": { + "statistics": { + "interval": 120, + "types": [ "ssids", "lldp", "clients" ] + }, + "health": { + "interval": 120 + } + }, + "services": { + "lldp": { + "describe": "uCentral", + "location": "universe" + }, + "ssh": { + "port": 22 + } + } +}