diff options
author | hyunuk.tak <hyunuk.tak@samsung.com> | 2020-04-07 12:57:45 +0900 |
---|---|---|
committer | hyunuk.tak <hyunuk.tak@samsung.com> | 2020-04-16 12:39:44 +0900 |
commit | 70730f50e09cac648b1c3b48f0a1e6ed40cc510f (patch) | |
tree | 649a28589e37dd9ce5b1d17a18aa32ac2e418a7e /src/main.conf | |
parent | e1c81b4af01d7f63325a516cc298097cf18d5c73 (diff) | |
download | connman-70730f50e09cac648b1c3b48f0a1e6ed40cc510f.tar.gz connman-70730f50e09cac648b1c3b48f0a1e6ed40cc510f.tar.bz2 connman-70730f50e09cac648b1c3b48f0a1e6ed40cc510f.zip |
Add intelligent Network Selectionsubmit/tizen/20200417.010643accepted/tizen/unified/20200417.152700
Change-Id: I049207e7d662f657ca21a4046be953f8f33bbd10
Signed-off-by: hyunuk.tak <hyunuk.tak@samsung.com>
Diffstat (limited to 'src/main.conf')
-rwxr-xr-x | src/main.conf | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/main.conf b/src/main.conf index ab0dc2db..6e26464e 100755 --- a/src/main.conf +++ b/src/main.conf @@ -168,3 +168,37 @@ NetworkCellularInterfaceList = pdp,rmnet,seth_td,seth_w # if all nameservers are failed to resolve DNS query. The nameserver # entries must be in numeric format. # GlobalNameserver = 8.8.8.8 + +# Enable supplicant debugging log +ConnmanSupplicantDebug = false + +[INS] +# INS(Intelligent Network Selection) configuration: BSSID Selection. +INSPreferredFreqBSSID = 5GHz +INSPreferredFreqBSSIDScore = 20 +INSLastConnectedBSSID = true +INSLastConnectedBSSIDScore = 20 +INSAssocReject = true +INSAssocRejectScore = 10 +INSSignalBSSID = true + +# INS(Intelligent Network Selection) configuration: SSID Selection. +INSLastUserSelection = true +INSLastUserSelectionTime = 480 +INSLastUserSelectionScore = 30 +# (INSLastUserSelectionTime - selection time diff) / (INSLastUserSelectionTime / INSLastUserSelectionScore) +# This means '(480 - selection time) / x) <= 30' +INSLastConnected = true +INSLastConnectedScore = 30 +INSPreferredFreq = 5GHz +INSPreferredFreqScore = 60 +INSSecurityPriority = SAE,RSN +INSSecurityPriorityScore = 5 +# In this case, SAE(10 score), RSN(5 score) +INSSignal = true +INSInternet = true +INSInternetScore = 30 + +# INS(Intelligent Network Selection) configuration: Common. +INSSignalLevel3_5GHz = -76 +INSSignalLevel3_24GHz = -74 |