Files
wlan-testing/libs/cloudsdk/configuration_data.py
2021-03-09 12:25:20 +03:00

17 lines
399 B
Python

"""
A set of constants describing AP profiles
"""
PROFILE_DATA = {
"test_single_client_wpa2": {
"profile_name": "test-ssid-wpa2",
"ssid_name": "test_wpa2_test",
"mode": "BRIDGE",
"security_key": "testing12345"
},
"test_single_client_open": {
"profile_name": "test-ssid-open",
"ssid_name": "test_open",
"mode": "BRIDGE"
}
}