mirror of
				https://github.com/Telecominfraproject/wlan-testing.git
				synced 2025-11-04 12:57:55 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			399 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			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"
 | 
						|
    }
 | 
						|
} |