##### Example wpa_supplicant configuration file ############################### # # # Original Version # ---------------- # wpa_supplicant-0.2.3/wpa_supplicant.conf # # # To Reload Changees # ------------------ # killall -HUP wpa_supplicant # # # To Generate the WPA network keys # -------------------------------- # wpa_passphrase "essid-of-the-ap" "the secret passphrase" # # # To Install the wpa daemon # ------------------------- # wpa_supplicant -Bw [ -dd ] -c/etc/wpa_supplicant.conf -iath0 # # Configuration file '/etc/wpa_supplicant.conf' -> '/etc/wpa_supplicant.conf' # Reading configuration file '/etc/wpa_supplicant.conf' # ctrl_interface='/var/run/wpa_supplicant' # eapol_version=1 # Daemonize.. # # Trying to associate with \ # (SSID='Testing-ESSID' freq=2437 MHz) # WPA key negotiation completed with # # # 21-Jun-04 amo Copied from wpa_supplicant-0.2.3/wpa_supplicant.conf # 27-Jun-04 amo Removed un-necessary comments # # # ctrl_interface=/var/run/wpa_supplicant eapol_version=1 # # # Only WPA-PSK is used. Any valid cipher combination is accepted. # network={ ssid="Testing-ESSID" # # if proto is not defined, defaults to: WPA RSN proto=WPA # # if key_mgmt is not defined, defaults to: WPA-PSK WPA-EAP key_mgmt=WPA-PSK # # if pairwise is not defined, defaults to: CCMP TKIP pairwise=CCMP TKIP # # if group is not defined, defaults to: CCMP TKIP WEP104 WEP40 group=CCMP TKIP WEP104 WEP40 # # if eap is not defined, defaults to: MD5 MSCHAPV2 TLS PEAP TTLS # # psk: WPA preshared key - not needed if wpa-eap is used #psk="my secret pass phrase" psk=03101c71c6abf8827293f44d7c13883ec83214fab8ab4069eec737508a7c220a } # # # End of file