mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-12-18 09:51:26 +00:00
Configure the following without vif reload: Tx power probe_response_threshold client disconnect threshold Beacon and multicast rates Signed-off-by: Chaitanya Godavarthi <chaitanya.kiran@netexperience.com>
87 lines
2.1 KiB
Diff
87 lines
2.1 KiB
Diff
Index: opensync-2.0.5.0/interfaces/opensync.ovsschema
|
|
===================================================================
|
|
--- opensync-2.0.5.0.orig/interfaces/opensync.ovsschema
|
|
+++ opensync-2.0.5.0/interfaces/opensync.ovsschema
|
|
@@ -9368,6 +9368,69 @@
|
|
}
|
|
},
|
|
"isRoot": true
|
|
+ },
|
|
+ "APC_Config": {
|
|
+ "columns": {
|
|
+ "enabled": {
|
|
+ "type": {
|
|
+ "key": {
|
|
+ "type": "boolean"
|
|
+ },
|
|
+ "min": 0,
|
|
+ "max": 1
|
|
+ }
|
|
+ }
|
|
+ },
|
|
+ "isRoot": true,
|
|
+ "maxRows": 1
|
|
+ },
|
|
+ "APC_State": {
|
|
+ "columns": {
|
|
+ "dr_addr": {
|
|
+ "type": {
|
|
+ "key": {
|
|
+ "type": "string"
|
|
+ }
|
|
+ }
|
|
+ },
|
|
+ "bdr_addr": {
|
|
+ "type": {
|
|
+ "key": {
|
|
+ "type": "string"
|
|
+ }
|
|
+ }
|
|
+ },
|
|
+ "enabled": {
|
|
+ "type": {
|
|
+ "key": {
|
|
+ "type": "boolean"
|
|
+ },
|
|
+ "min": 0,
|
|
+ "max": 1
|
|
+ }
|
|
+ },
|
|
+ "mode": {
|
|
+ "type": {
|
|
+ "key": {
|
|
+ "type": "string",
|
|
+ "enum": [
|
|
+ "set",
|
|
+ [
|
|
+ "DR",
|
|
+ "BDR",
|
|
+ "OR",
|
|
+ "WT",
|
|
+ "NC"
|
|
+ ]
|
|
+ ]
|
|
+ },
|
|
+ "min": 0,
|
|
+ "max": 1
|
|
+ }
|
|
+ }
|
|
+ },
|
|
+ "isRoot": true,
|
|
+ "maxRows": 1
|
|
}
|
|
}
|
|
}
|
|
Index: opensync-2.0.5.0/src/lib/schema/inc/schema_consts.h
|
|
===================================================================
|
|
--- opensync-2.0.5.0.orig/src/lib/schema/inc/schema_consts.h
|
|
+++ opensync-2.0.5.0/src/lib/schema/inc/schema_consts.h
|
|
@@ -154,6 +154,7 @@ typedef enum {
|
|
#define SCHEMA_CONSTS_DISABLE_B_RATES "disable_b_rates"
|
|
#define SCHEMA_CONSTS_IEEE80211k "ieee80211k"
|
|
#define SCHEMA_CONSTS_DYNAMIC_VLAN "dynamic_vlan"
|
|
+#define SCHEMA_CONSTS_RADPROXY "radproxy"
|
|
|
|
/* radio Custom options */
|
|
#define SCHEMA_CONSTS_LOCAL_PWR_CONSTRAINT "local_pwr_constraint"
|