Skip to content

Instantly share code, notes, and snippets.

@caglar10ur
Last active October 27, 2017 21:36
Show Gist options
  • Save caglar10ur/4601431 to your computer and use it in GitHub Desktop.
Save caglar10ur/4601431 to your computer and use it in GitHub Desktop.
/etc/wpa_supplicant/wpa_supplicant.conf for Edimax EW-7811Un on Raspberry Pi
/etc/network/interfaces
---------------------------------------
auto lo
iface lo inet loopback
iface eth0 inet dhcp
allow-hotplug wlan0
iface wlan0 inet dhcp
pre-up wpa_supplicant -Dwext -i wlan0 -c /etc/wpa_supplicant/wpa_supplicant.conf -B
iface default inet dhcp
/etc/wpa_supplicant/wpa_supplicant.conf
---------------------------------------
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
ssid="SSID"
psk="PASSWORD"
scan_ssid=1
key_mgmt=WPA-PSK
proto=RSN
pairwise=CCMP
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment