mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-12-20 02:43:38 +00:00
- Support to configure fixed beacon and multicast rates - Modified/Removed unwanted RRM parameters Signed-off-by: Yashvardhan <yashvardhan@netexperience.com>
97 lines
2.5 KiB
Diff
97 lines
2.5 KiB
Diff
--- a/interfaces/opensync.ovsschema
|
|
+++ b/interfaces/opensync.ovsschema
|
|
@@ -8671,6 +8671,92 @@
|
|
}
|
|
},
|
|
"isRoot": true
|
|
- }
|
|
+ },
|
|
+ "Wifi_RRM_Config": {
|
|
+ "columns": {
|
|
+ "freq_band": {
|
|
+ "type": {
|
|
+ "key": {
|
|
+ "type": "string",
|
|
+ "enum": [
|
|
+ "set",
|
|
+ [
|
|
+ "2.4G",
|
|
+ "5G",
|
|
+ "5GL",
|
|
+ "5GU"
|
|
+ ]
|
|
+ ]
|
|
+ }
|
|
+ }
|
|
+ },
|
|
+ "backup_channel": {
|
|
+ "type": {
|
|
+ "key": {
|
|
+ "type": "integer",
|
|
+ "minInteger": 1,
|
|
+ "maxInteger": 181
|
|
+ },
|
|
+ "min": 0,
|
|
+ "max": 1
|
|
+ }
|
|
+ },
|
|
+ "mcast_rate": {
|
|
+ "type": {
|
|
+ "key": {
|
|
+ "type": "integer"
|
|
+ },
|
|
+ "min": 0,
|
|
+ "max": 1
|
|
+ }
|
|
+ },
|
|
+ "probe_resp_threshold": {
|
|
+ "type": {
|
|
+ "key": {
|
|
+ "type": "integer"
|
|
+ },
|
|
+ "min": 0,
|
|
+ "max": 1
|
|
+ }
|
|
+ },
|
|
+ "client_disconnect_threshold": {
|
|
+ "type": {
|
|
+ "key": {
|
|
+ "type": "integer"
|
|
+ },
|
|
+ "min": 0,
|
|
+ "max": 1
|
|
+ }
|
|
+ },
|
|
+ "snr_percentage_drop": {
|
|
+ "type": {
|
|
+ "key": {
|
|
+ "type": "integer"
|
|
+ },
|
|
+ "min": 0,
|
|
+ "max": 1
|
|
+ }
|
|
+ },
|
|
+ "min_load": {
|
|
+ "type": {
|
|
+ "key": {
|
|
+ "type": "integer"
|
|
+ },
|
|
+ "min": 0,
|
|
+ "max": 1
|
|
+ }
|
|
+ },
|
|
+ "beacon_rate": {
|
|
+ "type": {
|
|
+ "key": {
|
|
+ "type": "integer"
|
|
+ },
|
|
+ "min": 0,
|
|
+ "max": 1
|
|
+ }
|
|
+ }
|
|
+ },
|
|
+ "isRoot": true
|
|
+ }
|
|
}
|
|
}
|