Skip to content

Instantly share code, notes, and snippets.

@arun-gupta
Created May 22, 2014 15:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arun-gupta/77e8ea3406b0d2a17428 to your computer and use it in GitHub Desktop.
Save arun-gupta/77e8ea3406b0d2a17428 to your computer and use it in GitHub Desktop.
Network configuration for Raspi
#/etc/nework/interfaces
auto lo
iface lo inet loopback
iface eth0 inet dhcp
allow-hotplug wlan0
iface wlan0 inet manual
wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
iface default inet dhcp
#/etc/wpa_supplicant/wpu_supplicant.conf
ctrl_interface=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
ssid="xxxx-xxxx"
psk="xxxxxxxxxxxxxxxx"
proto=RSN
key_mgmt=WPA-PSK
pairwise=TKIP
auth_alg=OPEN
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment