Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #In the WPA-Enterprise Illumos project we want to support the following configuations as they are defined in the wpa_supplicant.conf format
- #These configurations define the security policies used in Eduroam network, but they are common to many other environments
- # EAP-PEAP configuration
- ctrl_interface=/var/run/wpa_supplicant
- network={
- ssid="eduroam"
- key_mgmt=WPA-EAP
- ca_cert="/etc/eduroam/ca.cer"
- identity="[email protected]"
- eap=PEAP
- password="test"
- phase2="auth=MSCHAPV2"
- }
- network={
- ssid="eduroam"
- key_mgmt=IEEE8021X
- ca_cert="/etc/eduroam/ca.cer"
- identity="[email protected]"
- eap=PEAP
- password="test"
- phase2="auth=MSCHAPV2"
- }
- # EAP-TLS configuration
- ctrl_interface=/var/run/wpa_supplicant
- network={
- ssid="eduroam"
- key_mgmt=WPA-EAP
- ca_cert="/etc/eduroam/ca.cer"
- identity="[email protected]"
- eap=TLS
- client_cert="/etc/eduroam/user.crt"
- private_key="/etc/eduroam/user.key"
- private_key_passwd="xxxx"
- }
- network={
- ssid="eduroam"
- key_mgmt=IEEE8021X
- ca_cert="/etc/eduroam/ca.cer"
- identity=" [email protected] "
- eap=TLS
- client_cert="/etc/eduroam/user.crt"
- private_key="/etc/eduroam/user.key"
- private_key_passwd="xxxx"
- }
- # EAP-TTLS configuration
- ctrl_interface=/var/run/wpa_supplicant
- network={
- ssid="eduroam"
- key_mgmt=WPA-EAP
- ca_cert="/etc/eduroam/ca.cer"
- identity="[email protected]"
- eap=TTLS
- password="xxxx"
- phase2="auth=PAP"
- }
- network={
- ssid="eduroam"
- key_mgmt=IEEE8021X
- ca_cert="/etc/eduroam/ca.cer"
- identity="[email protected]"
- eap=TTLS
- password="xxxx"
- phase2="auth=PAP"
- }
- # Only WPA-PSK is used. Any valid cipher combination is accepted.
- network={
- ssid="example"
- key_mgmt=WPA-PSK
- psk=06b4be19da289f475aa46a33cb793029d4ab3db7a23ee92382eb0106c72ac7bb
- priority=2
- }
- # Shared WEP key connection (no WPA, no IEEE 802.1X) using Shared Key
- # IEEE 802.11 authentication
- network={
- ssid="static-wep-test2"
- key_mgmt=NONE
- wep_key0="abcde"
- wep_key1=0102030405
- wep_key2="1234567890123"
- wep_tx_keyidx=0
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement