From 2598df3a3915eb8564e53ca6aa074900aec47dd1 Mon Sep 17 00:00:00 2001 From: stephb9959 Date: Wed, 8 Sep 2021 22:33:31 -0700 Subject: [PATCH] Adding tree import. --- ...block-interfaces-oneSSID-basic-bridge.json | 31 +++++++++++++++++++ test_scripts/curl/block-metrics.json | 14 +++++++++ test_scripts/curl/block-radios.json | 17 ++++++++++ test_scripts/curl/block-services.json | 10 ++++++ 4 files changed, 72 insertions(+) create mode 100644 test_scripts/curl/block-interfaces-oneSSID-basic-bridge.json create mode 100644 test_scripts/curl/block-metrics.json create mode 100644 test_scripts/curl/block-radios.json create mode 100644 test_scripts/curl/block-services.json diff --git a/test_scripts/curl/block-interfaces-oneSSID-basic-bridge.json b/test_scripts/curl/block-interfaces-oneSSID-basic-bridge.json new file mode 100644 index 0000000..6534c81 --- /dev/null +++ b/test_scripts/curl/block-interfaces-oneSSID-basic-bridge.json @@ -0,0 +1,31 @@ +{ "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", + "key": "OpenWifi", + "ieee80211w": "optional" + } + } + ] +} + diff --git a/test_scripts/curl/block-metrics.json b/test_scripts/curl/block-metrics.json new file mode 100644 index 0000000..80911db --- /dev/null +++ b/test_scripts/curl/block-metrics.json @@ -0,0 +1,14 @@ +{ + "metrics": { + "statistics": { + "interval": 120, + "types": [ "ssids", "lldp", "clients" ] + }, + "health": { + "interval": 120 + }, + "wifi-frames": { + "filters": [ "probe", "auth" ] + } + } +} \ No newline at end of file diff --git a/test_scripts/curl/block-radios.json b/test_scripts/curl/block-radios.json new file mode 100644 index 0000000..7689454 --- /dev/null +++ b/test_scripts/curl/block-radios.json @@ -0,0 +1,17 @@ +{ "radios": [ + { + "band": "5G", + "channel": 52, + "channel-mode": "HE", + "channel-width": 80, + "country": "CA" + }, + { + "band": "2G", + "channel": 11, + "channel-mode": "HE", + "channel-width": 20, + "country": "CA" + } + ] +} \ No newline at end of file diff --git a/test_scripts/curl/block-services.json b/test_scripts/curl/block-services.json new file mode 100644 index 0000000..7e7aa85 --- /dev/null +++ b/test_scripts/curl/block-services.json @@ -0,0 +1,10 @@ +{ "services": { + "lldp": { + "describe": "uCentral", + "location": "universe" + }, + "ssh": { + "port": 22 + } + } +} \ No newline at end of file