Difference between revisions of "Wpa supplicant.conf"

From MS Computech
Jump to: navigation, search
Line 1: Line 1:
# This line enables the use of wpa_cli which is used by rc.wireless
+
dsfasfdsafdsfdasf<br>
 +
 
 +
<br>
 +
<pre># This line enables the use of wpa_cli which is used by rc.wireless
 
# if possible (to check for successful association)
 
# if possible (to check for successful association)
 
ctrl_interface=/var/run/wpa_supplicant
 
ctrl_interface=/var/run/wpa_supplicant
Line 6: Line 9:
 
eapol_version=1
 
eapol_version=1
 
ap_scan=1
 
ap_scan=1
fast_reauth=1
+
fast_reauth=1</pre><pre># WPA protected network, supply your own ESSID and WPAPSK here:
  
# WPA protected network, supply your own ESSID and WPAPSK here:
 
 
network={
 
network={
 +
 +
 +
 
   scan_ssid=0
 
   scan_ssid=0
 
   ssid="your_essid_here"
 
   ssid="your_essid_here"
Line 17: Line 22:
 
   group=CCMP TKIP WEP104 WEP40
 
   group=CCMP TKIP WEP104 WEP40
 
   psk=your_psk_here
 
   psk=your_psk_here
}
+
 +
 
 +
}</pre><pre># Plaintext connection (no WPA, no IEEE 802.1X),
  
# Plaintext connection (no WPA, no IEEE 802.1X),
 
 
# nice for hotel/airport types of WiFi network.
 
# nice for hotel/airport types of WiFi network.
 +
 
# You'll need a recent version of wireless-tools for this!
 
# You'll need a recent version of wireless-tools for this!
 +
 +
 
network={
 
network={
 +
 +
 +
 
   ssid="any"
 
   ssid="any"
 
   key_mgmt=NONE
 
   key_mgmt=NONE
 
   priority=2
 
   priority=2
 +
 +
 +
 
}
 
}
 +
 +
 +
</pre>
 +
<br>

Revision as of 10:44, 9 July 2008

dsfasfdsafdsfdasf


# This line enables the use of wpa_cli which is used by rc.wireless
# if possible (to check for successful association)
ctrl_interface=/var/run/wpa_supplicant
# By default, only root (group 0) may use wpa_cli
ctrl_interface_group=0
eapol_version=1
ap_scan=1
fast_reauth=1
# WPA protected network, supply your own ESSID and WPAPSK here:

network={


 scan_ssid=0
 ssid="your_essid_here"
 proto=WPA
 key_mgmt=WPA-PSK
 pairwise=CCMP TKIP
 group=CCMP TKIP WEP104 WEP40
 psk=your_psk_here

}
# Plaintext connection (no WPA, no IEEE 802.1X),
  1. nice for hotel/airport types of WiFi network.
  1. You'll need a recent version of wireless-tools for this!


network={


 ssid="any"
 key_mgmt=NONE
 priority=2


}