Skip to content

Instantly share code, notes, and snippets.

@moomindani
Created April 30, 2014 03:53
Show Gist options
  • Save moomindani/8bd1887cea0fdee68395 to your computer and use it in GitHub Desktop.
Save moomindani/8bd1887cea0fdee68395 to your computer and use it in GitHub Desktop.
Enable wifi on raspberry pi and connect to Apple TimeCapsule
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
ssid="moomin_wireless_network"
proto=WPA2
key_mgmt=WPA-PSK
pairwise=TKIP CCMP
group=TKIP CCMP
psk=xxx
}
@AdrianBinDC
Copy link

AdrianBinDC commented Dec 8, 2018

This got it done for me on a Raspberry Pi 3 B+

country=US
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1

network={
    ssid="NETWORK-NAME"
    psk="NETWORK-PASSWORD"
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment