wlan-ap-Telecominfraproject/feeds/wlan-ap/opensync/patches/15-schema-rrm.patch
Yashvardhan 955ae11f94 opensync: Set beacon and multicast tx rates
- Support to configure fixed beacon and multicast rates
- Modified/Removed unwanted RRM parameters

Signed-off-by: Yashvardhan <yashvardhan@netexperience.com>
2020-11-23 07:35:48 +01:00

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
+ }
}
}