Created
June 10, 2013 10:36
-
-
Save vasmani/5747847 to your computer and use it in GitHub Desktop.
raspberry pi - gopro - wpa_supplicant
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- wpa_supplicant.conf --- | |
| ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev | |
| ctrl_interface_group=root | |
| update_config=1 | |
| #ap_scan=0 | |
| network={ | |
| ssid="GOPRO-WIFI" | |
| psk="goprohero" | |
| proto=WPA2 | |
| key_mgmt=WPA-PSK | |
| pairwise=CCMP | |
| group=CCMP | |
| priority=5 | |
| } | |
| --- /etc/network/interfaces --- | |
| auto lo | |
| iface lo inet loopback | |
| iface eth0 inet static | |
| address 10.192.168.2 | |
| netmask 255.255.0.0 | |
| allow-hotplug wlan0 | |
| iface wlan0 inet manual | |
| wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf | |
| iface default inet dhcp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment