I am using the Thread Border Router 1.0.0 on a Raspberry Pi 3B+
I have not been able to connect the RaspPi to our wifi network.
I tried this method first, as described here. Our network is hidden and does not appear in the list returned by iwlist wlan0 scan. I know the SSID and password and used that.
wifi_connect mynetwork mypassword
The network settings remain unchanged and the BorderRouter-AP was still present, and even after rebooting the RaspPi.
pi@raspberrypi:~ $ ifconfig wlan0
wlan0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 10.42.0.1 netmask 255.255.255.0 broadcast 10.42.0.255
inet6 fe80::ba27:ebff:fec1:2c66 prefixlen 64 scopeid 0x20<link>
ether b8:27:eb:c1:2c:66 txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 3 overruns 0 frame 0
TX packets 2893 bytes 738594 (721.2 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
I also tried the method described here. I modified /etc/wpa_supplicant/wpa_supplicant.conf as described in the "Hidden Networks" section.
Again, the network setting remain unchanged and the BorderRouter-AP was still present, and even after rebooting the RaspPi.
I also tried using raspi-config as to set the country code, network SSID, and network password. (I noticed that this method had not effect on the /etc/wpa_supplicant/wpa_supplicant.conf file.) Still no wifi.
Here is what's in /etc/wpa_supplicant/wpa_supplicant.conf
country=US ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev update_config=1 network={ ssid="myssid" scan_ssid=1 psk="mypassword" key_mgmt=WPA_PSK }
What's wrong?
Mary