Created
July 1, 2017 13:58
-
-
Save hmenn/3196c8b4b03c9f27186eb5fdafca6b7b to your computer and use it in GitHub Desktop.
Example wpa_supplicant.conf
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
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