Page 1 of 1

WiFi WPA2

Posted: Fri Jul 25, 2014 1:27 am
by bertolottipf
HELLO ALL
I need to set a wifi key to be free. In my home there's a rooter setted with WPA2 security. How can I set up my Raspbian?
TNX!

Re: WiFi WPA2

Posted: Fri Jul 25, 2014 8:40 am
by DougieLawson
Open an LXTerminal window and run wpa_gui.
Or sudo nano /etc/wpa_supplicant/wpa_supplicant.conf and add your SSID/password in there.

Code: Select all

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

network={
        ssid="yourWifiSSIDhere"
        scan_ssid=1
        psk="yourWiFipasswordhere"
}

Re: WiFi WPA2

Posted: Tue Jul 29, 2014 9:06 am
by bertolottipf
TNX! Perfect!!!! You're the (quite :D ) best!!!