mirror of
https://github.com/gryf/wicd.git
synced 2025-12-20 12:58:07 +01:00
The output of dhclient is now parsed by wicd and used to determine why the connection failed. All the wpa_supplicant conf files will now generate a ctrl_interface, so that they can be accessed by wpa_cli. wpa_cli now is used by wicd to attempt to determine is wpa_supplicant authentication was successful. This is still experimental, and might have to be tweaked to work properly. If wicd.py is started and the daemon isn't present, it will autolaunch it by calling launchdaemon.sh, instead of asking the user to start the daemon manually. Cleaned up some comments, formatting, etc. Probably a couple of other little bug fixes I'm forgetting.
20 lines
391 B
Plaintext
20 lines
391 B
Plaintext
name = EAP-FAST
|
|
author = Adam Blackburn
|
|
version = 2
|
|
require username *Username password *Password pac_file *Path_To_PAC_File
|
|
-----
|
|
ctrl_interface=/var/run/wpa_supplicant
|
|
network={
|
|
ssid="$_ESSID"
|
|
scan_ssid=$_SCAN
|
|
proto=RSN WPA
|
|
pairwise=CCMP TKIP
|
|
group=CCMP TKIP
|
|
key-mgmt=WPA-EAP
|
|
eap=FAST
|
|
identity=$_USERNAME
|
|
password=$_PASSWORD
|
|
phase1="fast_provisioning=1"
|
|
pac-file="$_PAC_FILE"
|
|
}
|