<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://devzone.nordicsemi.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Thread Border Router 1.0.0 won&amp;#39;t connect to wifi</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/37688/thread-border-router-1-0-0-won-t-connect-to-wifi</link><description>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</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 30 Aug 2018 13:56:22 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/37688/thread-border-router-1-0-0-won-t-connect-to-wifi" /><item><title>RE: Thread Border Router 1.0.0 won't connect to wifi</title><link>https://devzone.nordicsemi.com/thread/146537?ContentTypeID=1</link><pubDate>Thu, 30 Aug 2018 13:56:22 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:04e76824-757c-4148-bd44-583a3310a598</guid><dc:creator>Edvin</dc:creator><description>&lt;p&gt;Hello Mary,&lt;/p&gt;
&lt;p&gt;Thank you for the typo correction. It is very helpful with this description if someone else wants to do the same.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Edvin&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Thread Border Router 1.0.0 won't connect to wifi</title><link>https://devzone.nordicsemi.com/thread/146372?ContentTypeID=1</link><pubDate>Wed, 29 Aug 2018 16:05:15 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:90e3d255-4300-4188-9b79-d27086289525</guid><dc:creator>Mary</dc:creator><description>&lt;p&gt;Yes, this worked, after some corrections.&amp;nbsp; I corrected a small typo (key.mgmt should be key-mgmt).&amp;nbsp; Also an additional command is required to bring up the connection:&lt;/p&gt;
&lt;p&gt;&lt;em&gt;$ sudo nmcli con up &amp;lt;ssid&amp;gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;I created some scripts to perform these functions which others may find useful.&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Note: I created these with Notepad++, using UTF8 encoding.&amp;nbsp; I transferred them to the RaspPi over Ethernet with WinSCP using &amp;#39;Text&amp;#39; transfer setting.&amp;nbsp; Of course, you could write them using nano on the RaspPi.&lt;/p&gt;
&lt;p&gt;disable_ap.sh&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;#!/bin/bash
# Script for disabling wifi access point on a Raspberry Pi Border Router
#
# Execute this file on the RaspPi with the command:
# sh disable_ap.sh
#
# Encoding: UTF8, use &amp;#39;Text&amp;#39; for WinSCP transfers


echo &amp;quot;Disable access point&amp;quot;
sudo systemctl disable ap-config.service
sudo nmcli connection down BorderRouter-AP&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;enable_ap.sh&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;#!/bin/bash
# Script for enabling wifi access point on a Raspberry Pi Border Router
#
# Execute this file on the RaspPi with the command:
# sh enable_ap.sh
#
# Encoding: UTF8, use &amp;#39;Text&amp;#39; for WinSCP transfers


echo &amp;quot;Enable access point&amp;quot;
sudo systemctl enable ap-config.service

echo &amp;quot;Reboot for this to take effect&amp;quot;
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;setup_wifi.sh&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;#!/bin/bash
# Script for setting up wifi on a Raspberry Pi Border Router
#
# Execute this file on the RaspPi with the command:
# sh setup_wifi.sh &amp;lt;SSID&amp;gt; &amp;lt;password&amp;gt;
#

# Check command line args
if [ &amp;quot;$#&amp;quot; -ne 2 ]; then
	echo &amp;quot;Error: 2 arguments required, SSID and password&amp;quot;
	exit
fi

echo &amp;quot;Add new connection&amp;quot; $1 $2
sudo nmcli connection add con-name $1 ifname wlan0 type wifi ssid $1 ipv6.method ignore wifi-sec.key-mgmt wpa-psk wifi-sec.psk $2
sudo nmcli connection up $1
nmcli connection show

echo &amp;quot;Done&amp;quot;&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Thanks for the help.&lt;/p&gt;
&lt;p&gt;Mary&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Thread Border Router 1.0.0 won't connect to wifi</title><link>https://devzone.nordicsemi.com/thread/146318?ContentTypeID=1</link><pubDate>Wed, 29 Aug 2018 13:04:26 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1a487a13-ea32-4e67-b939-eb67a5060106</guid><dc:creator>Edvin</dc:creator><description>&lt;p&gt;Hello Mary,&lt;/p&gt;
&lt;p&gt;I received an explanation today. I suggest that you reload the image file for the bootloader to start with a clean build when you try this. The email I received follows:&lt;/p&gt;
&lt;p&gt;&amp;lt;email&amp;gt;&lt;/p&gt;
&lt;p&gt;The Border Router image uses systemd to start access point during each boot. To disable this feature use the following command:&lt;/p&gt;
&lt;p&gt;&lt;em&gt;$sudo systemctl disable ap-config.service&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Note that the access point is still enabled, but it won&amp;#39;t be enabled during the next boot sequence.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The Border Router image uses the NetworkManager module to manage Wifi networks. It is recommended to use this module instead of wpa_supplicant directly.&lt;/p&gt;
&lt;p&gt;To switch off the access point and connect to other networks, use the following commands:&lt;/p&gt;
&lt;p&gt;&lt;em&gt;$ nmcli connection down BorderRouter-AP&lt;br /&gt;$ nmcli connection add con-name &amp;lt;ssid&amp;gt; ifname wlan0 type wifi ssid &amp;lt;ssid&amp;gt; ipv6.method ignore wifi-sec.key.mgmt wpa-psk wifi-sec.psk &amp;lt;password&amp;gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Connections added to NetworkManager is saved in NVM and is persistent after reboots. For details check the nmcli documentation:&lt;/p&gt;
&lt;p&gt;&lt;a href="https://developer.gnome.org/NetworkManager/stable/nmcli.html"&gt;https://developer.gnome.org/NetworkManager/stable/nmcli.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;/email&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Try this, and see if you can connect to the hidden network.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Edvin&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Thread Border Router 1.0.0 won't connect to wifi</title><link>https://devzone.nordicsemi.com/thread/146137?ContentTypeID=1</link><pubDate>Tue, 28 Aug 2018 13:20:49 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:163d737c-74a1-4566-8113-cc7eee195575</guid><dc:creator>Edvin</dc:creator><description>&lt;p&gt;Hello Mary,&lt;/p&gt;
&lt;p&gt;Still waiting for a reply from our Thread team. I will keep you updated.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;BR,&lt;/p&gt;
&lt;p&gt;Edvin&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Thread Border Router 1.0.0 won't connect to wifi</title><link>https://devzone.nordicsemi.com/thread/145693?ContentTypeID=1</link><pubDate>Fri, 24 Aug 2018 13:14:19 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:10d73272-46db-40f7-bed7-7b2f7be22b03</guid><dc:creator>Mary</dc:creator><description>&lt;p&gt;Yes, that was the first thing I tried.&amp;nbsp; It does not connect.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Thread Border Router 1.0.0 won't connect to wifi</title><link>https://devzone.nordicsemi.com/thread/145654?ContentTypeID=1</link><pubDate>Fri, 24 Aug 2018 10:46:22 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a5abe144-0c4f-40f5-95c9-83e6b8d10d68</guid><dc:creator>Edvin</dc:creator><description>&lt;p&gt;Hello Mary,&lt;/p&gt;
&lt;p&gt;You are right. I tried with a fresh download of the image, and indeed, it doesn&amp;#39;t work. I have no idea what I might have changed that made it work earlier. I will contact the Thread team who made the RPi img.&lt;/p&gt;
&lt;p&gt;Unfortunately, the guy who worked with it is not in the office today. I will let you know as soon as I know how to disable it.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Have you tried to use the wifi_connect command on the RPi?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;In my case, it works with:&lt;/p&gt;
&lt;p&gt;&amp;quot;wifi_connect Wifi_Name Password&amp;quot;&lt;/p&gt;
&lt;p&gt;But I have no hidden networks around to test this on. Can you try it? The disadvantage with this is that this have to be done every power reset.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Edvin&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Thread Border Router 1.0.0 won't connect to wifi</title><link>https://devzone.nordicsemi.com/thread/145530?ContentTypeID=1</link><pubDate>Thu, 23 Aug 2018 13:33:24 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c197d4d0-7fcb-4e3d-bf88-25cd8472da2d</guid><dc:creator>Mary</dc:creator><description>&lt;p&gt;Sorry, but that did not work.&lt;/p&gt;
&lt;p&gt;ap-helper&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;#!/bin/sh
#
#  Copyright (c) 2017, The OpenThread Authors.
#  All rights reserved.
#
#  Redistribution and use in source and binary forms, with or without
#  modification, are permitted provided that the following conditions are met:
#  1. Redistributions of source code must retain the above copyright
#     notice, this list of conditions and the following disclaimer.
#  2. Redistributions in binary form must reproduce the above copyright
#     notice, this list of conditions and the following disclaimer in the
#     documentation and/or other materials provided with the distribution.
#  3. Neither the name of the copyright holder nor the
#     names of its contributors may be used to endorse or promote products
#     derived from this software without specific prior written permission.
#
#  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS &amp;quot;AS IS&amp;quot;
#  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
#  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
#  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
#  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
#  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
#  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
#  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
#  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
#  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
#  POSSIBILITY OF SUCH DAMAGE.
#

NAME=&amp;quot;ap-helper&amp;quot;

IFNAME=$1
ACTION=$2

AP_CONN=&amp;quot;BorderRouter-AP&amp;quot;

DHCP_START=&amp;quot;10.42.0.2&amp;quot;
DHCP_END=&amp;quot;10.42.0.8&amp;quot;

ROUTER_IP=&amp;quot;10.42.0.1&amp;quot;

DNS1=${ROUTER_IP}
DNS2=&amp;quot;8.8.8.8&amp;quot;


log()
{
    logger -t &amp;quot;${NAME}[${$}]&amp;quot; $*
}

disable_accept_ra()
{
    log &amp;quot;Disable accepting Router Advertisements on the interface: &amp;#39;${IFNAME}&amp;#39;&amp;quot;
    sysctl -w net.ipv6.conf.${IFNAME}.accept_ra=1
}

start_dnsmasq()
{
    log &amp;quot;Starting &amp;#39;dnsmasq&amp;#39; on the interface: &amp;#39;${IFNAME}&amp;#39;&amp;quot;
    /usr/sbin/dnsmasq -i ${IFNAME} -a ${ROUTER_IP} -b -z -K -F${DHCP_START},${DHCP_END},24h -p0 -O3,${ROUTER_IP} -O6,${DNS1},${DNS2}
}

kill_dnsmasq()
{
    local DNSMASQ_PID=`pidof dnsmasq`

    if [ -n ${DNSMASQ_PID} ]; then
        log &amp;quot;Killing &amp;#39;dnsmasq&amp;#39; process with PID: &amp;#39;${DNSMASQ_PID}&amp;#39;&amp;quot;
        kill -9 ${DNSMASQ_PID}
    else
        log &amp;quot;&amp;#39;dnsmasq&amp;#39; is not running&amp;quot;
    fi
}

release_dhcpcd()
{
    log &amp;quot;Releasing &amp;#39;dhcpcd&amp;#39; on the interface: &amp;#39;${IFNAME}&amp;#39;&amp;quot;
    /sbin/dhcpcd -6 -k ${IFNAME}
}

handle_action_up()
{
    case ${IFNAME} in
    wlan*)
        if [ ${CONNECTION_ID} = ${AP_CONN} ]; then
            release_dhcpcd
            disable_accept_ra
            start_dnsmasq
        fi
        ;;
    *)
        ;;
    esac
}

handle_action_down()
{
    case ${IFNAME} in
    wlan*)
        if [ ${CONNECTION_ID} = ${AP_CONN} ]; then
            kill_dnsmasq
        fi
        ;;
    *)
        log &amp;quot;Skipping action: &amp;#39;${ACTION}&amp;#39; on the interface: &amp;#39;${IFNAME}&amp;#39;&amp;quot;
        ;;
    esac
}


case ${ACTION} in
up)
#    handle_action_up
    ;;
down)
#    handle_action_down
    ;;
*)
    log &amp;quot;Unsupported action: &amp;#39;${ACTION}&amp;#39;&amp;quot;
    ;;
esac
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;wpa_supplicant.conf&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;country=US
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
  ssid=&amp;quot;myssid&amp;quot;
  scan_ssid=1
  psk=&amp;quot;mypassword&amp;quot;
}
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;I reboot or power cycle and the Border-AP access point is still active.&lt;/p&gt;
&lt;p&gt;ifconfig wlan0&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;wlan0: flags=4163&amp;lt;UP,BROADCAST,RUNNING,MULTICAST&amp;gt;  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&amp;lt;link&amp;gt;
        ether b8:27:eb:c1:2c:66  txqueuelen 1000  (Ethernet)
        RX packets 0  bytes 0 (0.0 B)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 1648  bytes 416445 (406.6 KiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Mary&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Thread Border Router 1.0.0 won't connect to wifi</title><link>https://devzone.nordicsemi.com/thread/145496?ContentTypeID=1</link><pubDate>Thu, 23 Aug 2018 11:44:33 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ce46e3e8-52d9-467d-bfd4-d93d13e062cc</guid><dc:creator>Edvin</dc:creator><description>&lt;p&gt;Hello Mary,&lt;/p&gt;
&lt;p&gt;Sorry I didn&amp;#39;t give a more thorough explanation yesterday. I was on my way out of the office, and wanted to give you at least some hints before I left, but I didn&amp;#39;t have time to find the details.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;First, I don&amp;#39;t know how familiar you are with Raspbian, so I am sorry if this is a bit much details.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;To connect to a wifi network with your RPi you must either use a monitor and a keyboard connected to it, or you can connect to it via the wifi network that is set up by the RPi, and use Putty + ssh to access the OS on the RPi.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I looked at this today. If you connect the RPi to a monitor and a keyboard, you will see when the RPi boots up, in the log that is printed in the startup procedure: &amp;quot;My IP address is 10.42.0.1&amp;quot;.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;This is from a script called ap-helper, located in /etc/NetworkManager/dispatcher.d/ap-helper on the RPi.&lt;/p&gt;
&lt;p&gt;I may be repeating myself now, but you need either a keyboard connected directly to the Pi, or connect to the RPi&amp;#39;s network, and use Putty and SSH to access the RPi. If you use Putty and ssh, you need to do this in one go, because you will not be able to connect to it after changing the ap-helper file. If this is changed, and you have a reboot, you must re-program the bin file to the SD card on the RPi.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I am not too familiar with RPi and the booting process, but I have managed to disable this.&lt;/p&gt;
&lt;p&gt;What I did was that I opened this file:&lt;/p&gt;
&lt;p&gt;&amp;quot;sudo nano /etc/NetworkManager/dispatcher.d/ap-helper&amp;quot;&lt;/p&gt;
&lt;p&gt;Then, at the very bottom:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;case ${ACTION} in
up)
    handle_action_up
    ;;
down)
    handle_action_down
    ;;
*)
    log &amp;quot;Unsupported action: &amp;#39;${ACTION}&amp;#39;&amp;quot;
    ;;
esac&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I changed this to:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;case ${ACTION} in
up)
#    handle_action_up
    ;;
down)
#    handle_action_down
    ;;
*)
    log &amp;quot;Unsupported action: &amp;#39;${ACTION}&amp;#39;&amp;quot;
    ;;
esac&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;(when using the nano editor, press ctrl+X to exit file, then press &amp;quot;y&amp;quot; to confirm save, and hit enter to save with the same name.&lt;/p&gt;
&lt;p&gt;This way, the start_dnsmasq() function is never called, where the RPi sets up the WiFi network that you can connect to with your computer (which is the part that overrides the&amp;nbsp;wpa_supplicant.conf&amp;nbsp; settings).&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;After this is changed, you can change your&amp;nbsp;wpa_supplicant.conf file. Write:&lt;/p&gt;
&lt;p&gt;&amp;quot;sudo nano /etc/wpa_supplicant/wpa_supplicant.conf&amp;quot;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Then you must enter your network settings:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;network={
    ssid=&amp;quot;yourHiddenSSID&amp;quot;
    psk=&amp;quot;Your_wifi_password&amp;quot;
}&lt;br /&gt;&lt;br /&gt;With a hidden network, use the scan_ssid variable as well:&lt;br /&gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code&gt;network={
    ssid=&amp;quot;yourHiddenSSID&amp;quot;
    scan_ssid=1
    psk=&amp;quot;Your_wifi_password&amp;quot;
}&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;br /&gt;Save the file, and type &amp;quot;sudo reboot&amp;quot;, and the RPi should reboot, and automatically connect to the Network that you specified in wpa_supplicant.conf.&lt;br /&gt;&lt;br /&gt;Try this, and see if it works for you as well, and let me know if it doesn&amp;#39;t, or if anything is unclear.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;Edvin&lt;/pre&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Thread Border Router 1.0.0 won't connect to wifi</title><link>https://devzone.nordicsemi.com/thread/145358?ContentTypeID=1</link><pubDate>Wed, 22 Aug 2018 15:13:17 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:68b008dc-3534-44d0-b915-f98b7851a327</guid><dc:creator>Mary</dc:creator><description>&lt;p&gt;I have tried that method as described in &amp;quot;Thread Border Router Wi-Fi usage and configuration, as mentioned in my original post.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The wifi does not connect to the specified network.&lt;/p&gt;
&lt;p&gt;Does it matter that the network is &amp;#39;Hidden&amp;#39;?&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Where is the script?&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Mary&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Thread Border Router 1.0.0 won't connect to wifi</title><link>https://devzone.nordicsemi.com/thread/145352?ContentTypeID=1</link><pubDate>Wed, 22 Aug 2018 14:43:47 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:67d7dea3-e0aa-42c3-a15d-355c0e5aea7d</guid><dc:creator>Edvin</dc:creator><description>&lt;p&gt;Hello Mary,&lt;/p&gt;
&lt;p&gt;I have struggled with the same same thing. I don&amp;#39;t remember the details of it right now (And I don&amp;#39;t have my RPi set up at the moment). Basically, there is a script in the image for our border router which overruns the network settings on boot.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I have not found a nice workaround for this, other than to configure the network settings after every RPi power reset using the method described under &amp;quot;Thread Border Router Wi-Fi usage and configuration&amp;quot; on &lt;a href="http://infocenter.nordicsemi.com/index.jsp?topic=%2Fcom.nordic.infocenter.thread_zigbee.v1.0.0%2Fthread_border_router.html&amp;amp;anchor=thread_border_router_setup_4" target="_blank" rel="noopener noreferrer"&gt;this page&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;You can either connect via ssh (e.g. using Putty) after connecting to the network that the RPi set up, or by connecting a screen to the RPi&amp;#39;s HDMI port, and using a keyboard connected to the RPi.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Edvin&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>