Page 1 of 1

Raspberry pi 3 wlan config.. Help appreciated.

Posted: Monday 07 March 2016 18:25
by DutchHans
Hello all,
I don't know much about raspberry pis, i have a raspberry 1 running and want to switch to rasberry pi3.. Because i want everything stored on the attic where theres no network.. But i have no clue how to configure wlan on a raspberry pi3.. Ive tried startx but this command is unknown.. Command line wlan configuration as described on rasberry pi.org is not working with Domoticz..

All help from specialists is welcome.

Thank you in advance.
Cheers, Hans

Re: Raspberry pi 3 config

Posted: Monday 07 March 2016 18:33
by HansieNL

Re: Raspberry pi 3 wlan config.. Help appreciated.

Posted: Monday 07 March 2016 18:46
by DutchHans
Tried that, but no ipaddress..

Re: Raspberry pi 3 wlan config.. Help appreciated.

Posted: Monday 07 March 2016 22:48
by DutchHans
Got it working, but Domoticz startup ipaddress still stays empty.. When you attach a network cable it shows the ipaddress.. On wlan it stays blank.. A bug?

Cheers, Hans

Re: Raspberry pi 3 wlan config.. Help appreciated.

Posted: Saturday 12 March 2016 19:05
by Jihem
Hi
be sure to have made an update-upgrade of the lastest version.
in internationalization Options of "raspi-config", you have to choice the country for Wifi.
Best regards

Re: Raspberry pi 3 wlan config.. Help appreciated.

Posted: Sunday 27 March 2016 18:55
by randytsuch
I have wlan working on a pi3

edit the interfaces file using this command:
sudo nano /etc/network/interfaces

and add the following lines:
auto wlan0
iface wlan0 inet manual
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf


Then edit the wpa config file with this command:
sudo nano /etc/wpa_supplicant/wpa_supplicant.conf

My file looks like this:
country=US
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1

network={
ssid="your ssid"
psk="your wifi password"
key_mgmt=WPA-PSK
}


I had static IP working on my older Pi model B, but it didn't work on the pi3.
I had to setup the static IP in my router instead.

Randy

Re: Raspberry pi 3 wlan config.. Help appreciated.

Posted: Thursday 07 April 2016 22:11
by evansnp
Just to add to randytsuch's excellent reply, you can issue the command

Code: Select all

iwlist wlan0 scan
to find out which access points can be seen.