Skip to content

Instantly share code, notes, and snippets.

@henriquegogo
Created August 15, 2018 04:24
Show Gist options
  • Save henriquegogo/07c38a87d93e4c4f727fecfdc139469a to your computer and use it in GitHub Desktop.
Save henriquegogo/07c38a87d93e4c4f727fecfdc139469a to your computer and use it in GitHub Desktop.
wpa supplicant config for simple network and PEAP network authentications
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