mirror of
				https://github.com/Telecominfraproject/wlan-testing.git
				synced 2025-10-31 02:48:11 +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"
 | |
|     }
 | |
| } | 
