Skip to content

Instantly share code, notes, and snippets.

@hmenn
Created July 1, 2017 13:58
Show Gist options
  • Save hmenn/3196c8b4b03c9f27186eb5fdafca6b7b to your computer and use it in GitHub Desktop.
Save hmenn/3196c8b4b03c9f27186eb5fdafca6b7b to your computer and use it in GitHub Desktop.
Example wpa_supplicant.conf
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
ssid="Example_WEP_Network"
scan_ssid=1
key_mgmt=NONE
wep_key0="wep_password"
wep_tx_keyidx=0
}
network={
ssid="Example_WPA_Network"
scan_ssid=1
key_mgmt=WPA-PSK
proto=RSN
pairwise=CCMP
group=CCMP
psk="wpa_password"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment