Skip to content

Instantly share code, notes, and snippets.

@vinceallenvince
Last active December 17, 2015 19:50
Show Gist options
  • Save vinceallenvince/1773f045d583df717416 to your computer and use it in GitHub Desktop.
Save vinceallenvince/1773f045d583df717416 to your computer and use it in GitHub Desktop.
RPi network config file
# You can use this file to manually set up your network configuration.
#
# This file is included into /etc/network/interfaces, so anything that
# works by editing that file is also possible here.
### WIFI CONFIGURATION ######################################################
# The three segments below should cover you in most cases if you run
# a wifi network that uses either WPA/WPA2 or WEP encryption.
#
# Just uncomment the lines prefixed with a single # of the configuration
# that matches your wifi setup and fill in SSID and passphrase.
## WPA/WPA2 secured
#iface wlan0 inet manual
# wpa-ssid "put SSID here"
# wpa-psk "put password here"
## WEP secured
#iface wlan0 inet manual
# wireless-essid "put SSID here"
# wireless-key "put password here"
## Open/unsecured
#iface wlan0 inet manual
# wireless-essid "put SSID here"
# wireless-mode managed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment