Skip to content

Instantly share code, notes, and snippets.

@karimlahlou
Created May 30, 2018 09:42
Show Gist options
  • Save karimlahlou/75dfa45969271d01a02145028d6a36cc to your computer and use it in GitHub Desktop.
Save karimlahlou/75dfa45969271d01a02145028d6a36cc to your computer and use it in GitHub Desktop.
Setting up Wifi with the Command Line
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