Created
August 15, 2018 04:24
-
-
Save henriquegogo/07c38a87d93e4c4f727fecfdc139469a to your computer and use it in GitHub Desktop.
wpa supplicant config for simple network and PEAP network authentications
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
country=BR | |
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev | |
update_config=1 | |
network={ | |
ssid="MYNETWORK" | |
psk="PASSWORD" | |
} | |
network={ | |
ssid="MYNETWORK" | |
priority=1 | |
proto=RSN | |
key_mgmt=WPA-EAP | |
pairwise=CCMP | |
auth_alg=OPEN | |
eap=PEAP | |
identity="USERNAME" | |
password="PASSWORD" | |
phase1="peaplabel=0" | |
phase2="auth=MSCHAPV2" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment