mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2025-12-10 07:44:50 +01:00
map-controller: 4.2.0: update default config
This commit is contained in:
parent
a012f98b4c
commit
1ad1ef12b4
2 changed files with 41 additions and 21 deletions
|
|
@ -5,9 +5,9 @@
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=map-controller
|
PKG_NAME:=map-controller
|
||||||
PKG_VERSION:=4.1.1
|
PKG_VERSION:=4.2.0
|
||||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||||
PKG_SOURCE_VERSION:=8f2be4eea31eecd5aa6dfda8bc6221195817825b
|
PKG_SOURCE_VERSION:=2ae17fa9f7fc179fec39260f38697d5a50b365c1
|
||||||
|
|
||||||
PKG_LICENSE:=PROPRIETARY IOPSYS
|
PKG_LICENSE:=PROPRIETARY IOPSYS
|
||||||
PKG_LICENSE_FILES:=LICENSE
|
PKG_LICENSE_FILES:=LICENSE
|
||||||
|
|
|
||||||
|
|
@ -2,43 +2,63 @@ config controller 'controller'
|
||||||
option enabled '1'
|
option enabled '1'
|
||||||
option registrar '5 2' #bands on which wps registrar supported
|
option registrar '5 2' #bands on which wps registrar supported
|
||||||
option debug '6'
|
option debug '6'
|
||||||
option al_bridge 'br-lan'
|
option enable_sta_steer '0'
|
||||||
|
option enable_bsta_steer '0'
|
||||||
|
option primary_vid '1'
|
||||||
|
option primary_pcp '0'
|
||||||
|
|
||||||
config vlan 'lan'
|
config vlan 'lan'
|
||||||
option network 'lan'
|
option network 'lan'
|
||||||
option id '1'
|
option id '1'
|
||||||
|
|
||||||
config fh-credentials
|
config ap
|
||||||
option band '5'
|
option band '5'
|
||||||
option encryption 'psk2'
|
option encryption 'sae-mixed'
|
||||||
option key '1234567890'
|
option key '1234567890'
|
||||||
option ssid 'map-net5'
|
option ssid 'map-net5'
|
||||||
option vlan '1'
|
option vid '1'
|
||||||
|
option type 'fronthaul'
|
||||||
|
|
||||||
config fh-credentials
|
config ap
|
||||||
option band '2'
|
option band '2'
|
||||||
option encryption 'psk2'
|
option encryption 'sae-mixed'
|
||||||
option key '1234567890'
|
option key '1234567890'
|
||||||
option ssid 'map-net2'
|
option ssid 'map-net2'
|
||||||
# option bk_ssid 'multiap_ssid123'
|
option vid '1'
|
||||||
# option bk_key 'multiap_key123'
|
option type 'fronthaul'
|
||||||
option vlan '1'
|
|
||||||
|
|
||||||
config bk-credentials
|
config ap
|
||||||
option band '5'
|
option band '5'
|
||||||
option encryption 'psk2'
|
option encryption 'sae'
|
||||||
option key '5555555555'
|
option key '5555555555'
|
||||||
option ssid 'map-bkhaul-5'
|
option ssid 'map-bkhaul-5'
|
||||||
option multi_ap '2'
|
option type 'backhaul'
|
||||||
option disallow_bsta '1' # bitmap, 1 for disallow p1, 2 to disallow p2, 3 to disallow both (probably never applicable)
|
option disallow_bsta '1' # bitmap, 1 for disallow p1, 2 to disallow p2, 3 to disallow both (probably never applicable)
|
||||||
option vlan '1'
|
option vid '1'
|
||||||
|
|
||||||
|
config ap
|
||||||
config bk-credentials
|
|
||||||
option band '2'
|
option band '2'
|
||||||
option encryption 'psk2'
|
option encryption 'sae'
|
||||||
option key '2222222222'
|
option key '2222222222'
|
||||||
option ssid 'map-bkhaul-2'
|
option ssid 'map-bkhaul-2'
|
||||||
option multi_ap '2'
|
list disallow_bsta '0' # 0 or 1 profile-1 bSTA
|
||||||
option disallow_bsta '0' # 0 or 1 profile-1 bSTA
|
option vid '1'
|
||||||
option vlan '1'
|
option type 'backhaul'
|
||||||
|
|
||||||
|
config policy 'policy'
|
||||||
|
list steer_exclude '00:11:22:33:44:55'
|
||||||
|
list steer_exclude_btm '00:aa:bb:cc:dd:ee'
|
||||||
|
option steer_policy '2' # 0, 1, 2 - see MultiAP spec
|
||||||
|
option util_threshold '200' # channel-util as in BSS load
|
||||||
|
option rcpi_threshold '30' # 0 - 220 valid range
|
||||||
|
option report_scan '0' # 0 or 1 for independent scans
|
||||||
|
option report_sta_assocfails '1' # 0 or 1 - stas assoc failure
|
||||||
|
option report_sta_assocfails_rate '2' # reporting rate for STA assoc fails (attempts per minute)
|
||||||
|
option report_metric_periodic '0' # 0, or 1 - 255 in secs
|
||||||
|
option report_rcpi_threshold '0' # 0, or 1 - 220
|
||||||
|
option report_util_threshold '0' # 0, or channel-util value
|
||||||
|
option rcpi_hysteresis_margin '0' # 0, or > 0 - hysteresis margin
|
||||||
|
option include_sta_stats '0' # sta stats in AP metric resp
|
||||||
|
option include_sta_metric '0' # sta metric in AP metric resp
|
||||||
|
option disallow_bsta_p1 '0' # 0 or 1 profile-1 bSTA
|
||||||
|
option disallow_bsta_p2 '0' # 0 or 1 profile-2 bSTA
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue