Created
May 30, 2018 09:42
-
-
Save karimlahlou/75dfa45969271d01a02145028d6a36cc to your computer and use it in GitHub Desktop.
Setting up Wifi with the Command Line
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
auto lo | |
iface lo inet loopback | |
iface eth0 inet dhcp | |
auto wlan0 | |
allow-hotplug wlan0 | |
iface wlan0 inet dhcp | |
wpa-scan-ssid 1 | |
wpa-ap-scan 1 | |
wpa-key-mgmt WPA-PSK | |
wpa-proto RSN WPA | |
wpa-pairwise CCMP TKIP | |
wpa-group CCMP TKIP | |
wpa-ssid "My Secret SSID" | |
wpa-psk "My SSID PSK" | |
iface default inet dhcp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment