1
0
mirror of https://github.com/gryf/wicd.git synced 2026-01-04 12:54:12 +01:00

trying to fix

This commit is contained in:
compwiz18
2007-07-04 14:51:57 +00:00
commit 709efd2ac4
54 changed files with 4724 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
wpa
wep
leap
ttls
eap
peap

18
encryption/templates/eap Normal file
View File

@@ -0,0 +1,18 @@
name = EAP-FAST
author = Adam Blackburn
version = 2
require username *Username password *Password pac_file *Path_To_PAC_File
-----
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"
}

13
encryption/templates/leap Normal file
View File

@@ -0,0 +1,13 @@
name = LEAP with WEP
author = Adam Blackburn
version = 1
require username *Username password *Password
-----
network={
ssid="$_ESSID"
scan_ssid=$_SCAN
eap=LEAP
key-mgmt=IEEE8021X
identity="$_USERNAME"
password="$_PASSWORD"
}

14
encryption/templates/peap Normal file
View File

@@ -0,0 +1,14 @@
name = PEAP with GTC
author = Adam Blackburn
version = 2
require identity *Identity password *Password
-----
network={
ssid="$_ESSID"
proto=RSN
key_mgmt=WPA-EAP
pairwise=CCMP
eap=PEAP
identity="$_IDENTITY"
password="$_PASSWORD"
}

14
encryption/templates/ttls Normal file
View File

@@ -0,0 +1,14 @@
name = TTLS with WEP
author = Adam Blackburn
version = 1
require anonymous_identity *Anonymous_Identity identity *Identity password *Password auth *Authentication
-----
network={
ssid="$_ESSID"
scan_ssid=$_SCAN
eap=TTLS
key-mgmt=IEEE8021X
identity="$_USERNAME"
password="$_PASSWORD"
phase2="auth=$_AUTH"
}

13
encryption/templates/wep Normal file
View File

@@ -0,0 +1,13 @@
name = WEP
author = Adam Blackburn
version = 1
require key *Key
-----
network={
ssid="$_ESSID"
scan_ssid=$_SCAN
key_mgmt=NONE
wep_key0=$_KEY
wep_tx_keyidx=0
priority=5
}

14
encryption/templates/wpa Normal file
View File

@@ -0,0 +1,14 @@
name = WPA 1/2
author = Adam Blackburn
version = 1
require key *Key
-----
network={
ssid="$_ESSID"
scan_ssid=$_SCAN
proto=WPA RSN
key_mgmt=WPA-PSK
pairwise=CCMP TKIP
group=CCMP TKIP
psk=$_PSK
}