Skip to content

Instantly share code, notes, and snippets.

@AlexKovax
Last active January 1, 2016 06:29
Show Gist options
  • Save AlexKovax/8105299 to your computer and use it in GitHub Desktop.
Save AlexKovax/8105299 to your computer and use it in GitHub Desktop.
This is a simple conf file to set up the wireless adapter of a Raspberry Pi using Raspbian
#Basic /etc/network/interfaces file to access an encrypted AP
#Replace SSID by the name of the network the RPi must connect too
#Replace PASSWORD by the WPA password of the network
#loopback and ethernet
auto lo
iface lo inet loopback
iface eth0 inet dhcp
#wlan
allow-hotplug wlan0
auto wlan0
iface wlan0 inet dhcp
wpa-ssid "SSID"
wpa-psk "PASSWORD"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment