Skip to content

Instantly share code, notes, and snippets.

@boseji
Last active August 29, 2015 14:05
Show Gist options
  • Save boseji/164411f40dd88bbf395b to your computer and use it in GitHub Desktop.
Save boseji/164411f40dd88bbf395b to your computer and use it in GitHub Desktop.
Raspberry Pi Wifi Configuration
auto lo
iface lo inet loopback
allow-hotplug eth0
iface eth0 inet dhcp
auto wlan0
allow-hotplug wlan0
iface wlan0 inet manual
wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
wireless-power off
iface default inet dhcp
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
ssid="SSID"
scan_ssid=1
psk="Password"
proto=WPA
key_mgmt=WPA-PSK
pairwise=CCMP
auth_alg=OPEN
}
@boseji
Copy link
Author

boseji commented Aug 14, 2014

Storage Locations of the Pi:
/etc/network/interfaces
/etc/wpa_supplicant/wpa_supplicant.conf

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment