<?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>NRF7002-DK and DNS resolver</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/97134/nrf7002-dk-and-dns-resolver</link><description>Hello, 
 I&amp;#39;ve been evaluating the NRF7002-DK with 2.3.0-rc1 SDK. Although there&amp;#39;s almost no documentation on how to use Noridc&amp;#39;s WiFi stack (at least I haven&amp;#39;t found any), the samples in the SDK were great and I was able to get the scanning, connecting</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 14 Mar 2023 14:40:31 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/97134/nrf7002-dk-and-dns-resolver" /><item><title>RE: NRF7002-DK and DNS resolver</title><link>https://devzone.nordicsemi.com/thread/415262?ContentTypeID=1</link><pubDate>Tue, 14 Mar 2023 14:40:31 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:93893c41-4400-4cf9-9ec6-992a943684bd</guid><dc:creator>dejans</dc:creator><description>&lt;p&gt;Hi,&lt;br /&gt;&lt;br /&gt;There is a pull request for this DNS resolution problem - &lt;a href="https://github.com/zephyrproject-rtos/zephyr/pull/55759"&gt;checking existing DNS servers before reconfigure&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;Dejan&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NRF7002-DK and DNS resolver</title><link>https://devzone.nordicsemi.com/thread/414974?ContentTypeID=1</link><pubDate>Mon, 13 Mar 2023 15:16:08 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a889ea93-dfd2-41ac-bad4-9af58d83caf7</guid><dc:creator>Vigen</dc:creator><description>&lt;p&gt;Hi Dejan,&lt;/p&gt;
&lt;p&gt;Sorry for the late response. Here&amp;#39;s my retry logic:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;static int verify_hostname_resolved(const char* hostname) {
  struct addrinfo* result;
  struct addrinfo hints = {.ai_family = AF_INET, .ai_socktype = SOCK_DGRAM};
  int err = getaddrinfo(hostname, NULL, &amp;amp;hints, &amp;amp;result);
  if (err != 0) {
    return -EIO;
  }

  if (result == NULL) {
    return -ENOENT;
  }

  /* IPv4 Address. */
  struct sockaddr_in server = {
      .sin_addr = {.s_addr =
                       ((struct sockaddr_in*)result-&amp;gt;ai_addr)-&amp;gt;sin_addr.s_addr},
      .sin_family = AF_INET,
      .sin_port = htons(80),
  };

  /* Free the address. */
  freeaddrinfo(result);

  char ipv4_addr[NET_IPV4_ADDR_LEN];
  if (inet_ntop(AF_INET, &amp;amp;server.sin_addr.s_addr, ipv4_addr,
                sizeof(ipv4_addr))) {
    LOG_INF(&amp;quot;Successfully resolved IP address: hostname=%s, ip=%s&amp;quot;, hostname,
            ipv4_addr);
    return 0;
  }

  return -EAGAIN;
}

static int verify_dns() {
  const char* dns_test_servers[] = {&amp;quot;www.google.com&amp;quot;, &amp;quot;www.amazon.com&amp;quot;,
                                    &amp;quot;www.yahoo.com&amp;quot;};

  size_t dns_test_retry_count = 10;
  while (dns_test_retry_count-- &amp;gt; 0) {
    bool resolved = true;
    for (size_t i = 0; i &amp;lt; ARRAY_SIZE(dns_test_servers); ++i) {
      int err = verify_hostname_resolved(dns_test_servers[i]);
      if (err) {
        resolved = false;
        LOG_WRN(&amp;quot;Failed to resolve %s: err=%d&amp;quot;, dns_test_servers[i], err);
        break;
      }
    }

    if (resolved) {
      LOG_INF(&amp;quot;All test servers has been successfully resolved&amp;quot;);
      return 0;
    }

    // Sleep for (random) 500ms before trying again.
    k_usleep(500000);
  }

  return -ENETDOWN;
}
&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NRF7002-DK and DNS resolver</title><link>https://devzone.nordicsemi.com/thread/414038?ContentTypeID=1</link><pubDate>Wed, 08 Mar 2023 09:03:10 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b72180e9-adda-45f9-b0f4-97a5ebd8fc2c</guid><dc:creator>dejans</dc:creator><description>&lt;p&gt;Hi,&lt;br /&gt;&lt;br /&gt;Could you show your retry logic?&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;Dejan&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NRF7002-DK and DNS resolver</title><link>https://devzone.nordicsemi.com/thread/413900?ContentTypeID=1</link><pubDate>Tue, 07 Mar 2023 15:04:19 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f30a09c4-2e63-4b0e-83f2-5ea40cb6874f</guid><dc:creator>Vigen</dc:creator><description>&lt;p&gt;Yes, that&amp;#39;s right. Previously I tried to introduce a yield timeout of 1-10 seconds before the DNS resolution happens thinking I am accessing the stack too early (though as I wait for DHCP assignment that shouldn&amp;#39;t have mattered). But apparently, it&amp;#39;s the retries that guarantee the DNS to work. With the first successful resolution, all consequent resolutions work fine.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NRF7002-DK and DNS resolver</title><link>https://devzone.nordicsemi.com/thread/413822?ContentTypeID=1</link><pubDate>Tue, 07 Mar 2023 12:58:09 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6304fca3-20f7-400a-ae09-5175b387fdf0</guid><dc:creator>dejans</dc:creator><description>&lt;p&gt;Hi,&lt;br /&gt;&lt;br /&gt;Previously, you got timeout when both 2.4 GHz and 5 GHz network bands were enabled. With the addition of your retry logic, do you get successful resolution when both network bands are enabled?&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;Dejan&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NRF7002-DK and DNS resolver</title><link>https://devzone.nordicsemi.com/thread/413625?ContentTypeID=1</link><pubDate>Mon, 06 Mar 2023 17:32:02 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ce2d11bb-d2e5-4eaa-8db8-8d7ed1bc6661</guid><dc:creator>Vigen</dc:creator><description>&lt;p&gt;I did several runs, and they were quite inconsistent. Most of the times DNS would work, but from now and then it would timeout, especially on the hosts that are&amp;nbsp;not accessed often. That said, the consequent run on the same host would succeed. I tried to increase the timeout&amp;nbsp;without no effect&amp;nbsp;on resolution error rate,&amp;nbsp;but then I added a retry logic... and now it works like a charm in my app.&lt;/p&gt;
&lt;p&gt;Correctly if I am wrong, but with the config I have it the DNS resolution happens over UDP.&amp;nbsp;Then the only explanation I can think of that would induce the above behavior is that sometimes the first packet is lost (radio issues or my wifi setup, can&amp;#39;t say), but afterwards things start to work neetly. Here&amp;#39;s the log with socket debug enabled:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;[00:00:10.627,838] &amp;lt;inf&amp;gt; wifi: Connected to WiFi network, waiting for dhcp allocation...
[00:00:10.975,097] &amp;lt;inf&amp;gt; net_dhcpv4: Received: 192.168.6.57
[00:00:10.975,280] &amp;lt;inf&amp;gt; net_config: IPv4 address: 192.168.6.57
[00:00:10.975,280] &amp;lt;inf&amp;gt; net_config: Lease time: 11120 seconds
[00:00:10.975,341] &amp;lt;inf&amp;gt; net_config: Subnet: 255.255.252.0
[00:00:10.975,433] &amp;lt;inf&amp;gt; net_config: Router: 192.168.4.1
[00:00:10.976,623] &amp;lt;inf&amp;gt; wifi: DHCP IP address: 192.168.6.57
[00:00:12.979,064] &amp;lt;wrn&amp;gt; wifi: Failed to resolve www.google.com: err=-5
[00:00:13.514,526] &amp;lt;inf&amp;gt; wifi: Successfully resolved www.google.com
[00:00:13.531,677] &amp;lt;inf&amp;gt; wifi: Successfully resolved www.amazon.com
[00:00:13.550,781] &amp;lt;inf&amp;gt; wifi: Successfully resolved www.yahoo.com
[00:00:13.550,781] &amp;lt;inf&amp;gt; wifi: All test servers has been successfully resolved
&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NRF7002-DK and DNS resolver</title><link>https://devzone.nordicsemi.com/thread/413449?ContentTypeID=1</link><pubDate>Mon, 06 Mar 2023 09:12:23 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:958b96fa-50f2-48b1-aa4e-0e78658f568a</guid><dc:creator>dejans</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
[quote user="dejans"]What is the result if you disable 2.4 GHz band and enable 5 GHz band?&amp;nbsp;[/quote]
&lt;p&gt;Could you provide the result on 5 GHz?&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;Dejan&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NRF7002-DK and DNS resolver</title><link>https://devzone.nordicsemi.com/thread/413350?ContentTypeID=1</link><pubDate>Sat, 04 Mar 2023 01:40:33 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:55afd4d6-a519-49af-8dbf-e84e8887d62f</guid><dc:creator>Vigen</dc:creator><description>&lt;p&gt;I tried with the wifi shell app, and the results are similar to what I experienced with my code (need to run &lt;em&gt;wifi connect &amp;lt;ssid&amp;gt; 0 &amp;lt;psk&amp;gt;&lt;/em&gt;&amp;nbsp;before running the commands you&amp;#39;ve suggested):&lt;/p&gt;
&lt;p&gt;2.4GHZ network&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;uart:~$ net dns www.google.com
Query for &amp;#39;www.google.com&amp;#39; sent.
dns: 142.250.72.164
dns: All results received
uart:~$ net ping  142.250.72.164
PING 142.250.72.164
28 bytes from 142.250.72.164 to 192.168.0.203: icmp_seq=0 ttl=59 time=42 ms
28 bytes from 142.250.72.164 to 192.168.0.203: icmp_seq=1 ttl=59 time=35 ms
28 bytes from 142.250.72.164 to 192.168.0.203: icmp_seq=2 ttl=59 time=43 ms
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Mixed 2.4GHZ+5GHZ network&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;uart:~$ net dns www.google.com
Query for &amp;#39;www.google.com&amp;#39; sent.
dns: Timeout while resolving name.
&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NRF7002-DK and DNS resolver</title><link>https://devzone.nordicsemi.com/thread/413219?ContentTypeID=1</link><pubDate>Fri, 03 Mar 2023 11:07:47 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1ece14b7-936b-4794-96a7-11e0d99db1b5</guid><dc:creator>dejans</dc:creator><description>&lt;p&gt;Hi,&lt;br /&gt;&lt;br /&gt;What is the result if you disable 2.4 GHz band and enable 5 GHz band?&amp;nbsp;&lt;br /&gt;&lt;br /&gt;Could you try&amp;nbsp;&lt;a href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/nrf/samples/wifi/shell/README.html"&gt;Wi-Fi Shell&lt;/a&gt;&amp;nbsp;sample when only one, or both of the bands are enabled? What is the result when you run two commands shown below?&lt;br /&gt;&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;net dns &amp;lt;hostname&amp;gt;
net ping &amp;lt;resolved hostname&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;Dejan&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NRF7002-DK and DNS resolver</title><link>https://devzone.nordicsemi.com/thread/413079?ContentTypeID=1</link><pubDate>Thu, 02 Mar 2023 15:22:12 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a2b8c2a2-0123-47da-ba72-c06cdab72b23</guid><dc:creator>Vigen</dc:creator><description>&lt;p&gt;I think&amp;nbsp;I was finally able to pin-point the problem... My WiFi network is built on Eero&amp;nbsp;Pro Wifi mesh that runs on both 2.4GHZ and 5GHZ frequencies. The DNS resolution works perfectly fine if I disable the 5GHZ band and stops working if both bands are enabled.&amp;nbsp;I&amp;#39;ve tried to force the band in &lt;em&gt;struct wifi_connect_req_params::band&lt;/em&gt; field and setting it to &lt;em&gt;WIFI_FREQ_BAND_2_4_GHZ&lt;/em&gt; before connecting with both bands enabled on the WiFi, but the DNS resolution still didn&amp;#39;t work.&lt;/p&gt;
&lt;p&gt;My understanding was the NRF7002 chip supports WiFi 6 and supposed to work on both&amp;nbsp;bands, but the SDK seems to be under development still - is this something Nordic team is still working on?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NRF7002-DK and DNS resolver</title><link>https://devzone.nordicsemi.com/thread/413030?ContentTypeID=1</link><pubDate>Thu, 02 Mar 2023 13:13:12 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e1a98a63-74c4-4a40-a2a7-9c8470a4f936</guid><dc:creator>dejans</dc:creator><description>&lt;p&gt;Hi,&lt;br /&gt;&lt;br /&gt;With regard to the&amp;nbsp;&lt;a href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/2.3.0/nrf/samples/net/mqtt/doc/description.html"&gt;MQTT&lt;/a&gt; sample, I have tested it with additional configuration (which was initially provided) added to the prj.conf. I used nRF7002-DK and NCS v2.3.0-rc1. I could not reproduce the issue with getaddrinfo(). In addition to your changes, I had to add several configuration options (which are shown below) to prj.conf.&lt;br /&gt;&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;CONFIG_WIFI_CREDENTIALS_STATIC=y
CONFIG_WIFI_CREDENTIALS_STATIC_SSID=&amp;quot;YourAccesPointSSID&amp;quot;
CONFIG_WIFI_CREDENTIALS_STATIC_PASSWORD=&amp;quot;YourPassword&amp;quot;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;Dejan&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NRF7002-DK and DNS resolver</title><link>https://devzone.nordicsemi.com/thread/412824?ContentTypeID=1</link><pubDate>Wed, 01 Mar 2023 17:22:35 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:573e3933-4c21-4b7d-ae92-75234e132c13</guid><dc:creator>Vigen</dc:creator><description>&lt;p&gt;I&amp;#39;ve tried the mqtt application and (after updating the prj.conf with my wifi info) got exactly the same result (logs below).&lt;/p&gt;
&lt;p&gt;UPDATE: I&amp;#39;ve also tried the dns_resolve app, but that requires first setting up the wifi on nrf7002 which essentially&amp;nbsp;boils down to the mqtt application.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;[00:00:01.673,858] &amp;lt;wrn&amp;gt; wifi_credentials: Cannot retrieve WiFi credentials, no entry found for the provided SSID
[00:00:01.673,919] &amp;lt;inf&amp;gt; wifi_mgmt_ext: Adding statically configured WiFi network [***] to internal list.
[00:00:07.206,115] &amp;lt;inf&amp;gt; network: Wi-Fi Connected
[00:00:14.208,770] &amp;lt;err&amp;gt; mqtt_helper: getaddrinfo() failed, error -101
[00:00:14.208,801] &amp;lt;err&amp;gt; transport: Failed connecting to MQTT, error code: 101
&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NRF7002-DK and DNS resolver</title><link>https://devzone.nordicsemi.com/thread/412804?ContentTypeID=1</link><pubDate>Wed, 01 Mar 2023 15:32:47 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3213821e-2ebc-4d49-a8d3-98fd8cdd9e78</guid><dc:creator>Kenta</dc:creator><description>&lt;p&gt;Hello.&lt;/p&gt;
&lt;p&gt;There is an application called sample/net/dns_resolve in the Zephyr OS directory.&lt;/p&gt;
&lt;p&gt;If you use dns_get_addr_info called in the do_ipv4_lookup function on that side, I think that DNS name resolution will be possible.&lt;/p&gt;
&lt;p&gt;Best Regards.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NRF7002-DK and DNS resolver</title><link>https://devzone.nordicsemi.com/thread/412735?ContentTypeID=1</link><pubDate>Wed, 01 Mar 2023 12:35:59 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ae6e0603-6ef3-48e5-b917-2bdcac9d8176</guid><dc:creator>dejans</dc:creator><description>&lt;p&gt;Hi,&lt;br /&gt;&lt;br /&gt;In order to get more information about potential configuration problem, you could try&amp;nbsp;&lt;a href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/nrf/samples/net/mqtt/doc/description.html"&gt;MQTT&lt;/a&gt; sample which can run on both nRF9160-DK and nRF7002-DK.&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;Dejan&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NRF7002-DK and DNS resolver</title><link>https://devzone.nordicsemi.com/thread/412602?ContentTypeID=1</link><pubDate>Tue, 28 Feb 2023 19:20:34 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a3abe107-67d1-4c0a-8a3d-ac465cb779a6</guid><dc:creator>Vigen</dc:creator><description>&lt;p&gt;I based my code on sta and scan apps in nrf/samples/wifi. The application scans the available WiFi APs, selects the one that is configured and establishes a WiFi connection with that AP (this part works just fine). Later on the app tries to connect to Azure IoT Hub DPS, which uses getaddrinfo under the hood to resolve the DPS IP address for mqtt to connect to. The Azure connection works just great with NRF9160-DK over LTE, but with NRF7002-DK the DNS resolution fails.&lt;/p&gt;
&lt;p&gt;Here&amp;#39;s log the log snippet:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;[00:00:00.274,902] &amp;lt;inf&amp;gt; wifi_nrf: QSPI freq = 24 MHz
[00:00:00.280,426] &amp;lt;inf&amp;gt; wifi_nrf: QSPI latency = 1
[00:00:00.293,487] &amp;lt;inf&amp;gt; wifi_nrf: wifi_nrf_fmac_fw_load: LMAC patches loaded
[00:00:00.312,042] &amp;lt;inf&amp;gt; wifi_nrf: wifi_nrf_fmac_fw_load: LMAC boot check passed
[00:00:00.322,753] &amp;lt;inf&amp;gt; wifi_nrf: wifi_nrf_fmac_fw_load: UMAC patches loaded
[00:00:00.341,278] &amp;lt;inf&amp;gt; wifi_nrf: wifi_nrf_fmac_fw_load: UMAC boot check passed
[00:00:00.381,652] &amp;lt;inf&amp;gt; wifi_nrf: RPU LPM type: HW
[00:00:00.599,060] &amp;lt;inf&amp;gt; wifi_nrf: wifi_nrf_if_carr_state_chg: Carrier state: 0
[00:00:00.696,716] &amp;lt;dbg&amp;gt; net_dns_resolve: dns_resolve_init_locked: (main): No DNS servers defined.
*** Booting Zephyr OS build v3.2.99-ncs2-rc1 ***
[00:00:00.710,632] &amp;lt;inf&amp;gt; net_config: Initializing network
[00:00:00.716,522] &amp;lt;inf&amp;gt; net_config: Waiting interface 1 (0x20001560) to be up...
[00:00:00.724,487] &amp;lt;inf&amp;gt; net_config: Running dhcpv4 client...
[00:00:00.739,990] &amp;lt;inf&amp;gt; work_queues: IO work queue started
[00:00:00.806,457] &amp;lt;inf&amp;gt; wpa_supp: z_wpas_start: 334 Starting wpa_supplicant thread with debug level: 3
[00:00:00.829,162] &amp;lt;inf&amp;gt; wpa_supp: Successfully initialized wpa_supplicant
[00:00:00.853,759] &amp;lt;inf&amp;gt; wifi: Scanning for WiFi networks
[00:00:00.869,110] &amp;lt;inf&amp;gt; wpa_supp: l2_packet_init: iface wlan0 ifindex 1
[00:00:05.189,361] &amp;lt;inf&amp;gt; wifi: Got WiFi result: ssid=****, security=OPEN, band=5GHz, channel=A1, mac=***
[00:00:05.201,049] &amp;lt;inf&amp;gt; wifi: Got WiFi result: ssid=****, security=OPEN, band=2.4GHz, channel=06, mac=***
[00:00:05.213,958] &amp;lt;inf&amp;gt; wifi: Got WiFi result: ssid=****, security=WPA2-PSK, band=5GHz, channel=95, mac=***
[00:00:05.225,891] &amp;lt;inf&amp;gt; wifi: Got WiFi result: ssid=****, security=WPA2-PSK, band=5GHz, channel=95, mac=***
[00:00:05.238,433] &amp;lt;inf&amp;gt; wifi: Got WiFi result: ssid=****, security=WPA2-PSK, band=2.4GHz, channel=06, mac=***
[00:00:05.250,640] &amp;lt;inf&amp;gt; wifi: Got WiFi result: ssid=****, security=WPA2-PSK, band=2.4GHz, channel=06, mac=***
[00:00:05.263,732] &amp;lt;inf&amp;gt; wifi: Got WiFi result: ssid=****, security=OPEN, band=2.4GHz, channel=01, mac=***
[00:00:05.276,245] &amp;lt;inf&amp;gt; wifi: Got WiFi result: ssid=****, security=WPA2-PSK, band=2.4GHz, channel=0B, mac=***
[00:00:05.288,543] &amp;lt;inf&amp;gt; wifi: Got WiFi result: ssid=****, security=WPA2-PSK, band=5GHz, channel=99, mac=***
[00:00:05.300,811] &amp;lt;inf&amp;gt; wifi: Connecting to ****...
[00:00:10.886,291] &amp;lt;inf&amp;gt; wpa_supp: wlan0: SME: Trying to authenticate with 08:9b:f1:93:36:71 (SSID=&amp;#39;****&amp;#39; freq=5240 MHz)
[00:00:10.903,442] &amp;lt;inf&amp;gt; wifi_nrf: wifi_nrf_wpa_supp_authenticate:Authentication request sent successfully
[00:00:11.167,236] &amp;lt;inf&amp;gt; wpa_supp: wlan0: Trying to associate with 08:9b:f1:93:36:71 (SSID=&amp;#39;****&amp;#39; freq=5240 MHz)
[00:00:11.188,903] &amp;lt;inf&amp;gt; wifi_nrf: wifi_nrf_wpa_supp_associate: Association request sent successfully
[00:00:11.211,059] &amp;lt;inf&amp;gt; wifi_nrf: wifi_nrf_if_carr_state_chg: Carrier state: 1
[00:00:11.223,602] &amp;lt;inf&amp;gt; wpa_supp: wpa_drv_zep_get_ssid: SSID size: 13
[00:00:11.230,834] &amp;lt;inf&amp;gt; wpa_supp: wlan0: Associated with 08:9b:f1:93:36:71
[00:00:11.238,311] &amp;lt;inf&amp;gt; wpa_supp: wlan0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
[00:00:11.248,657] &amp;lt;inf&amp;gt; wpa_supp: wpa_drv_zep_get_ssid: SSID size: 13
[00:00:11.280,426] &amp;lt;inf&amp;gt; wpa_supp: wlan0: WPA: Key negotiation completed with 08:9b:f1:93:36:71 [PTK=CCMP GTK=CCMP]
[00:00:11.291,564] &amp;lt;inf&amp;gt; wpa_supp: wlan0: CTRL-EVENT-CONNECTED - Connection to 08:9b:f1:93:36:71 completed [id=0 id_str=]
[00:00:11.309,356] &amp;lt;wrn&amp;gt; wifi: Unexpected event received: -536608759
[00:00:11.323,364] &amp;lt;inf&amp;gt; wifi: Connected to WiFi network, waiting for dhcp allocation...
[00:00:12.515,899] &amp;lt;inf&amp;gt; net_dhcpv4: Received: 192.168.12.20
[00:00:12.522,125] &amp;lt;inf&amp;gt; net_config: IPv4 address: 192.168.12.20
[00:00:12.528,503] &amp;lt;inf&amp;gt; net_config: Lease time: 14092 seconds
[00:00:12.534,759] &amp;lt;inf&amp;gt; net_config: Subnet: 255.255.255.0
[00:00:12.540,679] &amp;lt;inf&amp;gt; net_config: Router: 192.168.12.1
[00:00:12.549,072] &amp;lt;inf&amp;gt; wifi: DHCP IP address: 192.168.12.20
[00:00:12.556,304] &amp;lt;dbg&amp;gt; net_dns_resolve: dns_resolve_name: (): DNS id will be 20441
[00:00:12.564,575] &amp;lt;dbg&amp;gt; net_dns_resolve: dns_write: (): [0] submitting work to server idx 0 for id 20441 hash 59079
[00:00:14.564,666] &amp;lt;dbg&amp;gt; net_dns_resolve: query_timeout: (sysworkq): Query timeout DNS req 20441 type 1 hash 59079
[00:00:14.575,408] &amp;lt;dbg&amp;gt; net_dns_resolve: dns_resolve_cancel_with_hash: (sysworkq): Cancelling DNS req 20441 (name google.com type 1 hash 59079)
[00:00:14.588,867] &amp;lt;err&amp;gt; wifi: getaddrinfo failed -101
[00:00:14.594,726] &amp;lt;err&amp;gt; wifi: Failed to resolve www.google.com: -5
[00:00:14.601,684] &amp;lt;err&amp;gt; main: Failed to enable cloud
[00:00:14.607,421] &amp;lt;inf&amp;gt; wifi: Connected to wifi: addrs=192.168.12.1
[00:00:14.614,227] &amp;lt;inf&amp;gt; azure_iot: Initializing Azure IoT Hub...
[00:00:14.621,032] &amp;lt;inf&amp;gt; azure_iot: Azure provisioning not started
[00:00:14.627,868] &amp;lt;dbg&amp;gt; net_dns_resolve: dns_resolve_name: (): DNS id will be 19812
[00:00:14.636,108] &amp;lt;dbg&amp;gt; net_dns_resolve: dns_write: (): [0] submitting work to server idx 0 for id 19812 hash 36583
[00:00:14.729,003] &amp;lt;err&amp;gt; mqtt_helper: mqtt_connect, error: -23
[00:00:14.735,626] &amp;lt;err&amp;gt; azure_iot_hub_dps: mqtt_helper_connect failed, error: -23
[00:00:14.743,835] &amp;lt;err&amp;gt; azure_iot: Failed to start Azure device provisioning: err=-23
[00:00:14.752,441] &amp;lt;err&amp;gt; main: Failed to initialize cloud: err=-23
&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NRF7002-DK and DNS resolver</title><link>https://devzone.nordicsemi.com/thread/412560?ContentTypeID=1</link><pubDate>Tue, 28 Feb 2023 14:50:06 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:eb167c90-319e-4e09-96ff-ef44fa87c5cc</guid><dc:creator>dejans</dc:creator><description>&lt;p&gt;Hi,&lt;br /&gt;&lt;br /&gt;Which application or sample do you use? Could you provide more information about your application?&lt;br /&gt;&lt;br /&gt;Could you provide log output from your application?&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;Dejan&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>