1
0
mirror of https://github.com/gryf/wicd.git synced 2025-12-25 07:32:29 +01:00

Fix up paths, take adventage of data path

This commit is contained in:
2020-08-27 20:33:05 +02:00
parent 8ddc4ac945
commit 367a9ab74d
33 changed files with 42 additions and 254 deletions

16
data/encryption/active Normal file
View File

@@ -0,0 +1,16 @@
wpa
wpa-peap
wpa-psk
wpa-psk-hex
wpa2-leap
wpa2-peap
wep-hex
wep-passphrase
wep-shared
leap
ttls
eap
peap
peap-tkip
eap-tls
psu

View File

@@ -0,0 +1 @@
wired_8021x

21
data/encryption/eap Normal file
View File

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

20
data/encryption/eap-tls Normal file
View File

@@ -0,0 +1,20 @@
name = EAP-TLS
author = Dan O'Reilly
version = 1
require identity *Identity private_key *Private_Key private_key_passwd *Private_Key_Password
optional ca_cert *Path_to_CA_Cert client_cert *Path_to_Client_Cert
protected identity *Identity private_key *Private_Key private_key_passwd *Private_Key_Password
-----
ctrl_interface=/var/run/wpa_supplicant
network={
ssid="$_ESSID"
key_mgmt=WPA-EAP
pairwise=TKIP
group=TKIP
eap=TLS
identity="$_IDENTITY"
ca_cert="$_CA_CERT"
client_cert="$_CLIENT_CERT"
private_key="$_PRIVATE_KEY"
private_key_passwd="$_PRIVATE_KEY_PASSWD"
}

15
data/encryption/leap Normal file
View File

@@ -0,0 +1,15 @@
name = LEAP with WEP
author = Adam Blackburn
version = 1
require username *Username password *Password
protected password *Password
-----
ctrl_interface=/var/run/wpa_supplicant
network={
ssid="$_ESSID"
scan_ssid=$_SCAN
eap=LEAP
key_mgmt=IEEE8021X
identity="$_USERNAME"
password="$_PASSWORD"
}

16
data/encryption/peap Normal file
View File

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

22
data/encryption/peap-tkip Normal file
View File

@@ -0,0 +1,22 @@
name = WPA1-PEAP with TKIP/MSCHAPV2
author = Fralaltro
version = 1
require identity *Identity password *Password
optional ca_cert *Path_to_CA_Cert
protected password *Password
-----
ctrl_interface=/var/run/wpa_supplicant
network={
ssid="$_ESSID"
scan_ssid=$_SCAN
proto=WPA
key_mgmt=WPA-EAP
pairwise=TKIP
group=TKIP
eap=PEAP
identity="$_IDENTITY"
password="$_PASSWORD"
ca_cert="$_CA_CERT"
phase1="peaplabel=0"
phase2="auth=MSCHAPV2"
}

15
data/encryption/psu Normal file
View File

@@ -0,0 +1,15 @@
name = PSU (IEEE 802.1x + PEAP + MSCHAPV2)
author = Alexander Anisimov
version = 1
require identity *Identity password *Password
protected password *Password
-----
ctrl_interface=/var/run/wpa_supplicant
network={
ssid="$_ESSID"
key_mgmt=IEEE8021X
eap=PEAP
phase2="auth=MSCHAPV2"
identity="$_IDENTITY"
password="$_PASSWORD"
}

16
data/encryption/ttls Normal file
View File

@@ -0,0 +1,16 @@
name = TTLS with WEP
author = Adam Blackburn
version = 1
require identity *Identity password *Password auth *Authentication
protected password *Password
-----
ctrl_interface=/var/run/wpa_supplicant
network={
ssid="$_ESSID"
scan_ssid=$_SCAN
eap=TTLS
key_mgmt=IEEE8021X
identity="$_IDENTITY"
password="$_PASSWORD"
phase2="auth=$_AUTH"
}

16
data/encryption/wep-hex Normal file
View File

@@ -0,0 +1,16 @@
name = WEP (Hex [0-9/A-F])
author = Adam Blackburn
version = 2
require key *Key
optional key_index *Key_Index
protected key *Key
-----
ctrl_interface=/var/run/wpa_supplicant
network={
ssid="$_ESSID"
scan_ssid=$_SCAN
key_mgmt=NONE
wep_key$_KEY_INDEX=$_KEY
wep_tx_keyidx=$_KEY_INDEX
priority=5
}

View File

@@ -0,0 +1,16 @@
name = WEP (Passphrase)
author = Adam Blackburn
version = 2
require passphrase *Passphrase
optional key_index *Key_Index
protected passphrase *Passphrase
-----
ctrl_interface=/var/run/wpa_supplicant
network={
ssid="$_ESSID"
scan_ssid=$_SCAN
key_mgmt=NONE
wep_key$_KEY_INDEX="$_PASSPHRASE"
wep_tx_keyidx=$_KEY_INDEX
priority=5
}

View File

@@ -0,0 +1,17 @@
name = WEP Shared/Restricted
author = Dan O'Reilly
version = 2
require key *Key
optional key_index *Key_Index
protected key *Key
-----
ctrl_interface=/var/run/wpa_supplicant
network={
ssid="$_ESSID"
scan_ssid=$_SCAN
key_mgmt=NONE
auth_alg=SHARED
wep_key$_KEY_INDEX=$_KEY
wep_tx_keyidx=$_KEY_INDEX
priority=5
}

View File

@@ -0,0 +1,17 @@
name = IEEE 802.1x with MSCHAPV2
author = Joe MacMahon
version = 1
require identity *Identity password *Password
protected password *Password
-----
ctrl_interface=/var/run/wpa_supplicant
eapol_version=1
fast_reauth=0
network={
key_mgmt=IEEE8021X
eap=PEAP
phase1="peaplabel=1"
phase2="auth=MSCHAPV2"
identity="$_IDENTITY"
password="$_PASSWORD"
}

16
data/encryption/wpa Normal file
View File

@@ -0,0 +1,16 @@
name = WPA 1/2 (Hex [0-9/A-F])
author = Adam Blackburn
version = 1
require key *Key
protected key *Key
-----
ctrl_interface=/var/run/wpa_supplicant
network={
ssid="$_ESSID"
scan_ssid=$_SCAN
proto=WPA RSN
key_mgmt=WPA-PSK
pairwise=CCMP TKIP
group=CCMP TKIP
psk=$_PSK
}

17
data/encryption/wpa-peap Normal file
View File

@@ -0,0 +1,17 @@
name = WPA1-PEAP with CCMP/MSCHAPV2
author = atiketemola
version = 1
require identity *Username domain *Domain password *Password
protected password *Password
-----
ctrl_interface=/var/run/wpa_supplicant
network={
ssid="$_ESSID"
proto=WPA
key_mgmt=WPA-EAP
pairwise=CCMP
eap=PEAP
identity="$_DOMAIN\$_IDENTITY"
password="$_PASSWORD"
phase2="auth=MSCHAPv2"
}

16
data/encryption/wpa-psk Normal file
View File

@@ -0,0 +1,16 @@
name = WPA 1/2 (Passphrase)
author = Adam Blackburn
version = 1
require apsk *Preshared_Key
protected apsk *Preshared_Key
-----
ctrl_interface=/var/run/wpa_supplicant
network={
ssid="$_ESSID"
scan_ssid=$_SCAN
proto=WPA RSN
key_mgmt=WPA-PSK
pairwise=CCMP TKIP
group=CCMP TKIP
psk="$_APSK"
}

View File

@@ -0,0 +1,16 @@
name = WPA 1/2 (Preshared Hex Key)
author = Thomas Kahle
version = 1
require apsk *Preshared_Key
protected apsk *Preshared_Key
-----
ctrl_interface=/var/run/wpa_supplicant
network={
ssid="$_ESSID"
scan_ssid=$_SCAN
proto=WPA RSN
key_mgmt=WPA-PSK
pairwise=CCMP TKIP
group=CCMP TKIP
psk=$_APSK
}

19
data/encryption/wpa2-leap Normal file
View File

@@ -0,0 +1,19 @@
name = WPA2-LEAP
author = atiketemola
version = 1
require username *Username password *Password
protected password *Password
-----
ctrl_interface=/var/run/wpa_supplicant
network={
ssid="$_ESSID"
scan_ssid=$_SCAN
auth_alg=LEAP
key_mgmt=WPA-EAP
proto=WPA2
pairwise=CCMP TKIP
group=CCMP TKIP
eap=LEAP
identity="$_USERNAME"
password="$_PASSWORD"
}

17
data/encryption/wpa2-peap Normal file
View File

@@ -0,0 +1,17 @@
name = WPA2-PEAP with CCMP/MSCHAPV2
author = atiketemola
version = 1
require identity *Username domain *Domain password *Password
protected password *Password
-----
ctrl_interface=/var/run/wpa_supplicant
network={
ssid="$_ESSID"
proto=RSN
key_mgmt=WPA-EAP
pairwise=CCMP
eap=PEAP
identity="$_DOMAIN\$_IDENTITY"
password="$_PASSWORD"
phase2="auth=MSCHAPv2"
}