1
0
mirror of https://github.com/gryf/wicd.git synced 2025-12-20 04:48:00 +01:00
Files
wicd/encryption/templates/eap
imdano d64850dfd3 Changed misc.Run to use subprocess.Popen instead of os.popen. Also altered Run to optionally return a pipe to the command run, instead of just the output.
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.
2008-01-06 13:55:23 +00:00

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"
}