Project

General

Profile

Feature #203

Updated by Hammel over 10 years ago

Need to add a tab for configuration Access Point.    This feature needs to request three items: 
 # SSID 
 # Password 
 # Channel 

 The rest of the configuration file (/etc/hostapd.conf) will look something like this: 
 > @interface=<ssid> 
 > driver=nl80211 
 > ssid=<ssid> 
 > channel=<channel> 
 > auth_algs=1 
 > wpa=2 
 > wpa_psk_file=/etc/hostapd-psk 
 > wpa_key_mgmt=WPA-PSK  
 > rsn_pairwise=CCMP@ 

 Also create /etc/hostapd-psk with the contents: 
 > @00:00:00:00:00:00 <password>@  

 Configuration based on  
 # "Implement strong WiFi encryption the easy way with hostapd":http://www.ibm.com/developerworks/library/l-wifiencrypthostapd/ 
 # "Hostapd : The Linux Way to create Virtual Wifi Access Point":http://nims11.wordpress.com/2012/04/27/hostapd-the-linux-way-to-create-virtual-wifi-access-point/ 

Back