20 lines
523 B
Plaintext
20 lines
523 B
Plaintext
|
name = WPA2-TTLS
|
||
|
author = various contributors
|
||
|
version = 1
|
||
|
require identity *Identity anonymous_identity *Anonymous_identity password *Password ca_cert *Path_to_CA_Cert
|
||
|
-----
|
||
|
ctrl_interface=/var/run/wpa_supplicant
|
||
|
network={
|
||
|
ssid="$_ESSID"
|
||
|
scan_ssid=$_SCAN
|
||
|
proto=WPA2
|
||
|
key_mgmt=WPA-EAP
|
||
|
group=CCMP TKIP
|
||
|
eap=TTLS
|
||
|
identity="$_IDENTITY"
|
||
|
password="$_PASSWORD"
|
||
|
anonymous_identity="$_ANONYMOUS_IDENTITY"
|
||
|
ca_cert="$_CA_CERT"
|
||
|
phase2="auth=PAP"
|
||
|
}
|