diff --git a/feeds/ucentral/ucentral-schema/Makefile b/feeds/ucentral/ucentral-schema/Makefile index 4e4805758..d8de2b3ab 100644 --- a/feeds/ucentral/ucentral-schema/Makefile +++ b/feeds/ucentral/ucentral-schema/Makefile @@ -4,10 +4,10 @@ PKG_NAME:=ucentral-schema PKG_RELEASE:=1 PKG_SOURCE_URL=https://github.com/Telecominfraproject/wlan-ucentral-schema.git -PKG_MIRROR_HASH:=d170dd6ec515bfbce254d54585c60ad2cffa02ea665c053ff41792546541a100 +PKG_MIRROR_HASH:=5d1f6b2bb1f7510b028b74be427e244b8bc5f83417b6aea5aa856ee38257c6d9 PKG_SOURCE_PROTO:=git PKG_SOURCE_DATE:=2024-07-03 -PKG_SOURCE_VERSION:=2b144865e3f4cc0dbdb125e47cc032e1467911b0 +PKG_SOURCE_VERSION:=f4924dcb462ed7b6646a3e3123a47e31e1c88767 PKG_MAINTAINER:=John Crispin PKG_LICENSE:=BSD-3-Clause diff --git a/feeds/ucentral/ucentral-schema/files/etc/ucentral/examples/roaming-psk2-radius.json b/feeds/ucentral/ucentral-schema/files/etc/ucentral/examples/roaming-psk2-radius.json new file mode 100644 index 000000000..a08e4c20f --- /dev/null +++ b/feeds/ucentral/ucentral-schema/files/etc/ucentral/examples/roaming-psk2-radius.json @@ -0,0 +1,111 @@ +{ + "uuid": 2, + "radios": [ + { + "band": "2G", + "country": "CA", + "channel-mode": "HE", + "channel-width": 20, + "channel": 1 + }, { + "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": "OpenWifi", + "wifi-bands": [ + "2G", "5G" + ], + "bss-mode": "ap", + "encryption": { + "proto": "psk2-radius", + "ieee80211w": "optional" + }, + "roaming": { + "message-exchange": "ds", + "key-aes-256": "000102030405060708090a0b0c0d0e0f000102030405060708090a0b0c0d0e0" + }, + "radius": { + "authentication": { + "host": "192.168.178.9", + "port": 1812, + "secret": "testing123" + }, + "accounting": { + "host": "192.168.178.9", + "port": 1813, + "secret": "testing123" + }, + "nas-identifier": "OpenWifi" + } + } + ] + }, + { + "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" + } + } + } + ], + "metrics": { + "statistics": { + "interval": 120, + "types": [ "ssids", "lldp", "clients" ] + }, + "health": { + "interval": 120 + }, + "wifi-frames": { + "filters": [ + "assoc", + "disassoc" + ] + } + }, + "services": { + "lldp": { + "describe": "uCentral", + "location": "universe" + }, + "ssh": { + "port": 22 + } + } +}