<?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>Cannot connect using connection manager</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/126904/cannot-connect-using-connection-manager</link><description>Hi, 
 I&amp;#39;m trying to use the connection manager in my application, but it never connects or shows any events. I&amp;#39;ve tried using the https_client sample as well, but that gives me the same result. 
 There&amp;#39;s an existing thread which mirrors the exact same</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 12 Feb 2026 12:36:51 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/126904/cannot-connect-using-connection-manager" /><item><title>RE: Cannot connect using connection manager</title><link>https://devzone.nordicsemi.com/thread/561008?ContentTypeID=1</link><pubDate>Thu, 12 Feb 2026 12:36:51 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f5aed188-458f-4f94-bd54-ef306239e590</guid><dc:creator>Adamcs</dc:creator><description>&lt;p&gt;Thanks for your time&amp;nbsp;&amp;Oslash;yvind.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Cannot connect using connection manager</title><link>https://devzone.nordicsemi.com/thread/560979?ContentTypeID=1</link><pubDate>Thu, 12 Feb 2026 08:31:18 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:7b5ea073-037b-4af2-9100-b142c51ff5f4</guid><dc:creator>&amp;#216;yvind</dc:creator><description>&lt;p&gt;Hello, thanks for elaborating.&lt;/p&gt;
[quote user="Adamcs"]I just wanted to use the connection manger in order to easily know connected/disconnected status, where I&amp;#39;m currently using &lt;em&gt;lte_lc_handler&lt;/em&gt;&amp;nbsp;and &lt;em&gt;date_time_handler&amp;nbsp;&lt;/em&gt;in order to determine when the device has internet access.[/quote]
&lt;p&gt;The &lt;a href="https://docs.nordicsemi.com/bundle/ncs-3.2.1/page/nrf/libraries/modem/lte_lc.html"&gt;LTE Link Control is recommended for our nRF91-series&lt;/a&gt; which&lt;span&gt;&amp;nbsp;provides functionality to control the LTE link on an nRF91 Series SiP.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
[quote user="Adamcs"]The&amp;nbsp;NET_EVENT_L4_CONNECTED indicates that the device is on the network, and an IP address, and is able to connect over MQTT, correct?[/quote]
&lt;p&gt;&lt;span&gt;Yes, this is correct. From &lt;a href="https://github.com/nrfconnect/sdk-nrf/blob/v3.2.1/samples/cellular/nrf_cloud_mqtt_device_message/src/main.c#L470-L491"&gt;nrf/samples/cellular/nrf_cloud_mqtt_device_message/src/main.c&lt;/a&gt;, and the logs look correct in regards to connection and functionality.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;static void l4_event_handler(struct net_mgmt_event_callback *cb, uint64_t event,
			     struct net_if *iface)
{
	if ((event &amp;amp; EVENT_MASK) != event) {
		return;
	}

	if (event == NET_EVENT_L4_CONNECTED) {
		/* Mark network as up. */
		dk_set_led(LTE_LED_NUM, 1);
		LOG_INF(&amp;quot;Connected to LTE&amp;quot;);
		k_event_post(&amp;amp;connection_events, NETWORK_UP);
	}

	if (event == NET_EVENT_L4_DISCONNECTED) {
		/* Mark network as down. */
		dk_set_led(LTE_LED_NUM, 0);
		LOG_INF(&amp;quot;Network connectivity lost!&amp;quot;);
	}
}&lt;/pre&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;From the logs we see&amp;nbsp;&lt;code&gt;[00:00:05.123,199] &amp;lt;inf&amp;gt; nrf_cloud_mqtt_device_message: Connected to LTE&lt;/code&gt;&lt;/span&gt;&lt;/p&gt;
[quote user="Adamcs"] don&amp;#39;t think it would be anything which would cause&amp;nbsp;issues for the connection manager.[/quote]
&lt;p&gt;That sounds correct. My guess is that due to removal of&amp;nbsp;&lt;span&gt;some parts regarding TLS/certificate the sample is connected but is having issues in the &lt;a href="https://github.com/nrfconnect/sdk-nrf/blob/v3.2.1/samples/net/https_client/src/main.c#L207"&gt;send_http_request()&lt;/a&gt; (just a guess from my side).&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Kind regards,&lt;br /&gt;Øyvind&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Cannot connect using connection manager</title><link>https://devzone.nordicsemi.com/thread/560925?ContentTypeID=1</link><pubDate>Wed, 11 Feb 2026 14:12:20 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ac7a99c3-83c0-4a2a-a8ad-e18a7d453865</guid><dc:creator>Adamcs</dc:creator><description>[quote userid="77062" url="~/f/nordic-q-a/126904/cannot-connect-using-connection-manager/560902"]Could you elaborate what you are trying to achieve?[/quote]
&lt;p&gt;I just wanted to use the connection manger in order to easily know connected/disconnected status, where I&amp;#39;m currently using &lt;em&gt;lte_lc_handler&lt;/em&gt;&amp;nbsp;and &lt;em&gt;date_time_handler&amp;nbsp;&lt;/em&gt;in order to determine when the device has internet access. The&amp;nbsp;NET_EVENT_L4_CONNECTED indicates that the device is on the network, and an IP address, and is able to connect over MQTT, correct?&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;    lte_lc_register_handler(lte_event_handler);
    lte_lc_connect_async(lte_event_handler);&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I&amp;#39;ve tested with another sample, &lt;em&gt;cellular/nrf_cloud_mqtt_device_message&lt;/em&gt;, and it&amp;#39;s now functioning as expected.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;*** Booting My Application v1.0.0-96e60fa01efd ***
*** Using nRF Connect SDK v3.2.1-d8887f6f32df ***
*** Using Zephyr OS v4.2.99-ec78104f1569 ***
[00:00:00.369,110] &amp;lt;inf&amp;gt; nrf_cloud_mqtt_device_message: nRF Cloud MQTT Device Message Sample, version: 1.0.0
[00:00:00.369,110] &amp;lt;inf&amp;gt; nrf_cloud_mqtt_device_message: Reset reason: 0x10001
[00:00:00.721,893] &amp;lt;inf&amp;gt; nrf_cloud_credentials: Sec Tag: 16842753; CA: Yes, Client Cert: Yes, Private Key: Yes
[00:00:00.721,984] &amp;lt;inf&amp;gt; nrf_cloud_credentials: CA Size: 1187, AWS: Likely, CoAP: Unlikely
[00:00:00.721,984] &amp;lt;inf&amp;gt; nrf_cloud_mqtt_device_message: nRF Cloud credentials detected!
[00:00:00.722,503] &amp;lt;inf&amp;gt; nrf_cloud_mqtt_device_message: Enabling connectivity...
+CEREG: 2,&amp;quot;7170&amp;quot;,&amp;quot;0093917B&amp;quot;,7
+CSCON: 1
+CGEV: ME PDN ACT 0,0
+CNEC_ESM: 50,0
%MDMEV: SEARCH STATUS 2
+CEREG: 5,&amp;quot;7170&amp;quot;,&amp;quot;0093917B&amp;quot;,7,,,&amp;quot;11100000&amp;quot;,&amp;quot;11100000&amp;quot;
%XTIME: &amp;quot;0A&amp;quot;,&amp;quot;6220113185720A&amp;quot;,&amp;quot;00&amp;quot;
[00:00:05.123,199] &amp;lt;inf&amp;gt; nrf_cloud_mqtt_device_message: Connected to LTE
[00:00:05.123,321] &amp;lt;inf&amp;gt; nrf_cloud_mqtt_device_message: Waiting for modem to acquire network time...
[00:00:08.124,084] &amp;lt;inf&amp;gt; nrf_cloud_mqtt_device_message: Network time obtained
[00:00:08.300,811] &amp;lt;inf&amp;gt; nrf_cloud_info: Device ID: nrf-351358811482246
[00:00:08.307,434] &amp;lt;inf&amp;gt; nrf_cloud_info: IMEI:      351358811482246
[00:00:08.307,861] &amp;lt;inf&amp;gt; nrf_cloud_info: Modem FW:  mfw_nrf9160_1.3.7
[00:00:08.307,891] &amp;lt;inf&amp;gt; nrf_cloud_info: Protocol:          MQTT
[00:00:08.307,952] &amp;lt;inf&amp;gt; nrf_cloud_info: Download protocol: HTTPS
[00:00:08.307,952] &amp;lt;inf&amp;gt; nrf_cloud_info: Sec tag:           16842753
[00:00:08.307,983] &amp;lt;inf&amp;gt; nrf_cloud_info: Host name:         mqtt.nrfcloud.com
[00:00:08.308,013] &amp;lt;inf&amp;gt; nrf_cloud_mqtt_device_message: Connecting to nRF Cloud...&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;I should mention that the &lt;em&gt;net/https_client&lt;/em&gt; doesn&amp;#39;t actually compile when I build for nrf9160dk_ns.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;c:/ncs/toolchains/66cdf9b75e/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/bin/ld.bfd.exe: app/libapp.a(main.c.obj): in function `cert_provision&amp;#39;:
C:/ncs/projects/_cs/https_client_1/src/main.c:108: undefined reference to `tls_credential_add&amp;#39;&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;I basically just modified it slightly to comment out some parts regarding TLS/certificate in order to get it compiling, though I don&amp;#39;t think it would be anything which would cause&amp;nbsp;issues for the connection manager.&lt;/p&gt;
&lt;p&gt;Thanks&amp;nbsp;&lt;span&gt;&amp;Oslash;yvind&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Cannot connect using connection manager</title><link>https://devzone.nordicsemi.com/thread/560902?ContentTypeID=1</link><pubDate>Wed, 11 Feb 2026 12:01:56 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:005f327c-7b5c-4878-94ed-d8e8cc7c08c8</guid><dc:creator>&amp;#216;yvind</dc:creator><description>&lt;p&gt;From the logs I can see that you get a connection and roam on you local network. See line 111 and 112. So this would indicate that it is not an issue with the SIM.&amp;nbsp;&lt;/p&gt;
[quote user=""]I&amp;#39;m testing on SDK v3.2.1 with nRF9160dk. This is the log output I&amp;#39;m getting from the https_client sample:[/quote]
&lt;p&gt;I would recommend testing one of the other Nordic samples available under&amp;nbsp;&lt;a href="https://docs.nordicsemi.com/bundle/ncs-latest/page/nrf/samples/cellular.html"&gt;nRF Connect SDK - Cellular samples&lt;/a&gt;&amp;nbsp;or&amp;nbsp;&lt;a href="https://docs.nordicsemi.com/bundle/ncs-latest/page/nrf/samples/net.html"&gt;nRF Connect SDK - Networking samples&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;If we do see these work, then there might be an issue with the https_client sample. Could you elaborate what you are trying to achieve?&lt;/p&gt;
&lt;p&gt;Kind regards,&lt;br /&gt;Øyvind&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Cannot connect using connection manager</title><link>https://devzone.nordicsemi.com/thread/560833?ContentTypeID=1</link><pubDate>Tue, 10 Feb 2026 17:30:32 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0347e16d-0530-42fb-87d5-e531c217e996</guid><dc:creator>Adamcs</dc:creator><description>[quote userid="77062" url="~/f/nordic-q-a/126904/cannot-connect-using-connection-manager/560790"]What happens after &amp;quot;Connecting to the network&amp;quot;? Are you able to connect to the network at all? How long did you leave it running?[/quote]
&lt;p&gt;No, I&amp;#39;ve never seen anything output beyond that line in the tested sample. I believe I&amp;#39;ve tried waiting at least 10-30 minutes, but I can try letting it run overnight just in case.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
[quote userid="77062" url="~/f/nordic-q-a/126904/cannot-connect-using-connection-manager/560790"]What SIM are you using?[/quote]
&lt;p&gt;I&amp;#39;m using an iBASIS SIM card, like what had come with the nRF9160dk. I&amp;#39;ll try it out on one from a different provider.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
[quote userid="77062" url="~/f/nordic-q-a/126904/cannot-connect-using-connection-manager/560790"]What modem FW are you running in the nRF9160?[/quote]
&lt;p&gt;mfw_nrf9160_1.3.7&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;Here&amp;#39;s the request output, from a modem callbacks sample.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;*** Booting nRF Connect SDK v3.2.1-d8887f6f32df ***
*** Using Zephyr OS v4.2.99-ec78104f1569 ***
[00:00:00.464,904] &amp;lt;dbg&amp;gt; os: setup_thread_stack: stack 0x2000dd50 for thread 0x2000c930: obj_size=1280 buf_start=0x2000dd50  buf_size 1280 stack_ptr=0x2000e250
[00:00:00.480,102] &amp;lt;dbg&amp;gt; os: setup_thread_stack: stack 0x2000e250 for thread 0x2000ca40: obj_size=1280 buf_start=0x2000e250  buf_size 1280 stack_ptr=0x2000e750
[00:00:00.495,269] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_lock: 0x2000cbe0 took mutex 0x2000c7ec, count: 1, orig prio: 0
[00:00:00.505,737] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_unlock: mutex 0x2000c7ec lock_count: 1
[00:00:00.514,129] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_unlock: new owner of mutex 0x2000c7ec: 0 (prio: -1000)
[00:00:00.523,925] &amp;lt;dbg&amp;gt; os: k_sched_unlock: scheduler unlocked (0x2000cbe0:0)
[00:00:00.761,535] &amp;lt;dbg&amp;gt; nrf_modem: nrf_modem_lib_init: Modem init callback: 0xe2e1
[00:00:00.769,989] &amp;lt;dbg&amp;gt; nrf_modem: nrf_modem_lib_init: Modem init callback: 0x10cd5
[00:00:00.778,533] &amp;lt;dbg&amp;gt; modem_antenna: set_antenna_configuration: Setting configuration: AT%XMAGPIO=1,0,0,1,1,1574,1577
[00:00:00.790,313] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_lock: 0x2000cbe0 took mutex 0x2000d01c, count: 1, orig prio: 0
[00:00:00.807,434] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_unlock: mutex 0x2000d01c lock_count: 1
[00:00:00.815,795] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_unlock: new owner of mutex 0x2000d01c: 0 (prio: -1000)
[00:00:00.825,561] &amp;lt;dbg&amp;gt; modem_antenna: set_antenna_configuration: Setting configuration: AT%XCOEX0=1,1,1565,1586
[00:00:00.836,700] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_lock: 0x2000cbe0 took mutex 0x2000d01c, count: 1, orig prio: 0
[00:00:00.853,820] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_unlock: mutex 0x2000d01c lock_count: 1
[00:00:00.862,152] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_unlock: new owner of mutex 0x2000d01c: 0 (prio: -1000)
[00:00:00.871,948] &amp;lt;dbg&amp;gt; nrf_modem: nrf_modem_lib_init: Modem init callback: 0x84e9
&amp;gt; Initialized with value 0
[00:00:00.882,904] &amp;lt;dbg&amp;gt; nrf_modem: nrf_modem_lib_init: Modem init callback: 0xf2a9
[00:00:00.891,387] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_lock: 0x2000cbe0 took mutex 0x2000d01c, count: 1, orig prio: 0
[00:00:00.908,477] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_unlock: mutex 0x2000d01c lock_count: 1
[00:00:00.916,839] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_unlock: new owner of mutex 0x2000d01c: 0 (prio: -1000)
[00:00:00.926,635] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_lock: 0x2000cbe0 took mutex 0x2000d01c, count: 1, orig prio: 0
[00:00:00.945,373] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_unlock: mutex 0x2000d01c lock_count: 1
[00:00:00.953,735] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_unlock: new owner of mutex 0x2000d01c: 0 (prio: -1000)
[00:00:00.963,531] &amp;lt;dbg&amp;gt; lte_lc: xsystemmode_mode_set: System mode set to 1, preference 0
[00:00:00.972,564] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_lock: 0x2000cbe0 took mutex 0x2000d01c, count: 1, orig prio: 0
[00:00:00.989,746] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_unlock: mutex 0x2000d01c lock_count: 1
[00:00:00.998,077] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_unlock: new owner of mutex 0x2000d01c: 0 (prio: -1000)
[00:00:01.014,251] &amp;lt;dbg&amp;gt; lte_lc: dns_fallback_set: Fallback DNS address successfully set to 1.1.1.1
[00:00:01.024,078] &amp;lt;dbg&amp;gt; lte_lc: lte_lc_connect_async: Connecting asynchronously
[00:00:01.032,287] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_lock: 0x2000cbe0 took mutex 0x2000c7ec, count: 1, orig prio: 0
[00:00:01.042,846] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_unlock: mutex 0x2000c7ec lock_count: 1
[00:00:01.051,208] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_unlock: new owner of mutex 0x2000c7ec: 0 (prio: -1000)
[00:00:01.061,004] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_lock: 0x2000cbe0 took mutex 0x2000d01c, count: 1, orig prio: 0
[00:00:01.078,125] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_unlock: mutex 0x2000d01c lock_count: 1
[00:00:01.086,486] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_unlock: new owner of mutex 0x2000d01c: 0 (prio: -1000)
[00:00:01.096,282] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_lock: 0x2000cbe0 took mutex 0x2000d01c, count: 1, orig prio: 0
[00:00:01.113,372] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_unlock: mutex 0x2000d01c lock_count: 1
[00:00:01.121,704] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_unlock: new owner of mutex 0x2000d01c: 0 (prio: -1000)
[00:00:01.131,530] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_lock: 0x2000cbe0 took mutex 0x2000d01c, count: 1, orig prio: 0
[00:00:01.148,590] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_unlock: mutex 0x2000d01c lock_count: 1
[00:00:01.156,951] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_unlock: new owner of mutex 0x2000d01c: 0 (prio: -1000)
[00:00:01.166,748] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_lock: 0x2000cbe0 took mutex 0x2000d01c, count: 1, orig prio: 0
[00:00:01.183,837] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_unlock: mutex 0x2000d01c lock_count: 1
[00:00:01.192,169] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_unlock: new owner of mutex 0x2000d01c: 0 (prio: -1000)
[00:00:01.201,995] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_lock: 0x2000cbe0 took mutex 0x2000d01c, count: 1, orig prio: 0
[00:00:01.249,664] &amp;lt;dbg&amp;gt; nrf_modem: cfun_callback: CFUN callback 0x8501
&amp;gt; Functional mode has changed to 1
[00:00:01.260,192] &amp;lt;dbg&amp;gt; nrf_modem: cfun_callback: CFUN callback 0x108cd
[00:00:01.267,700] &amp;lt;dbg&amp;gt; nrf_modem: cfun_callback: CFUN callback 0x19abb
[00:00:01.275,207] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_unlock: mutex 0x2000d01c lock_count: 1
[00:00:01.283,599] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_unlock: new owner of mutex 0x2000d01c: 0 (prio: -1000)
[00:00:01.293,426] &amp;lt;dbg&amp;gt; lte_lc: cfun_mode_set: Functional mode set to 1
[00:00:01.300,964] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_lock: 0x2000ca40 took mutex 0x2000d01c, count: 1, orig prio: 14
[00:00:01.311,889] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_unlock: mutex 0x2000d01c lock_count: 1
[00:00:01.320,220] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_unlock: new owner of mutex 0x2000d01c: 0 (prio: -1000)
[00:00:01.330,017] &amp;lt;dbg&amp;gt; date_time: date_time_modem_xtime_subscribe_work_fn: Subscribing to modem AT%XTIME notifications succeeded
[00:00:02.245,147] &amp;lt;dbg&amp;gt; at_monitor: at_monitor_task: AT notif: +CEREG: 2,&amp;quot;7170&amp;quot;,&amp;quot;0093917B&amp;quot;,7
[00:00:02.254,425] &amp;lt;dbg&amp;gt; at_monitor: at_monitor_task: Dispatching to 0xf569
[00:00:02.262,237] &amp;lt;dbg&amp;gt; lte_lc: at_handler_cereg: +CEREG notification: +CEREG: 2,&amp;quot;7170&amp;quot;,&amp;quot;0093917B&amp;quot;,7
[00:00:02.272,308] &amp;lt;dbg&amp;gt; lte_lc: parse_cereg: Network registration status: 2
[00:00:02.280,242] &amp;lt;dbg&amp;gt; lte_lc: parse_cereg: LTE mode: 7
[00:00:02.286,376] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_lock: 0x2000cd70 took mutex 0x2000c7ec, count: 1, orig prio: -1
[00:00:02.296,966] &amp;lt;dbg&amp;gt; lte_lc: event_handler_list_dispatch: Dispatching event: type=0
[00:00:02.305,847] &amp;lt;dbg&amp;gt; lte_lc: event_handler_list_dispatch:  - handler=0x0001027D
[00:00:02.314,300] &amp;lt;dbg&amp;gt; lte_lc: event_handler_list_dispatch:  - handler=0x0000850D
Network registration prestatus: 2

[00:00:02.327,087] &amp;lt;dbg&amp;gt; lte_lc: event_handler_list_dispatch: Done
[00:00:02.334,045] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_unlock: mutex 0x2000c7ec lock_count: 1
[00:00:02.342,437] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_unlock: new owner of mutex 0x2000c7ec: 0 (prio: -1000)
[00:00:02.352,233] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_lock: 0x2000cd70 took mutex 0x2000c7ec, count: 1, orig prio: -1
[00:00:02.362,792] &amp;lt;dbg&amp;gt; lte_lc: event_handler_list_dispatch: Dispatching event: type=4
[00:00:02.371,612] &amp;lt;dbg&amp;gt; lte_lc: event_handler_list_dispatch:  - handler=0x0001027D
[00:00:02.380,065] &amp;lt;dbg&amp;gt; lte_lc: event_handler_list_dispatch:  - handler=0x0000850D
LTE cell changed: Cell ID: 9671035, Tracking area: 29040
[00:00:02.393,646] &amp;lt;dbg&amp;gt; lte_lc: event_handler_list_dispatch: Done
[00:00:02.400,634] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_unlock: mutex 0x2000c7ec lock_count: 1
[00:00:02.408,996] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_unlock: new owner of mutex 0x2000c7ec: 0 (prio: -1000)
[00:00:02.418,792] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_lock: 0x2000cd70 took mutex 0x2000c7ec, count: 1, orig prio: -1
[00:00:02.429,351] &amp;lt;dbg&amp;gt; lte_lc: event_handler_list_dispatch: Dispatching event: type=5
[00:00:02.438,171] &amp;lt;dbg&amp;gt; lte_lc: event_handler_list_dispatch:  - handler=0x0001027D
[00:00:02.446,655] &amp;lt;dbg&amp;gt; lte_lc: event_handler_list_dispatch:  - handler=0x0000850D
[00:00:02.455,108] &amp;lt;dbg&amp;gt; lte_lc: event_handler_list_dispatch: Done
[00:00:02.462,066] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_unlock: mutex 0x2000c7ec lock_count: 1
[00:00:02.470,458] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_unlock: new owner of mutex 0x2000c7ec: 0 (prio: -1000)
[00:00:02.480,285] &amp;lt;dbg&amp;gt; at_monitor: at_monitor_task: AT notif: +CSCON: 1
[00:00:02.487,823] &amp;lt;dbg&amp;gt; at_monitor: at_monitor_task: Dispatching to 0xfc9d
[00:00:02.495,574] &amp;lt;dbg&amp;gt; lte_lc: at_handler_cscon: +CSCON notification
[00:00:02.502,929] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_lock: 0x2000cd70 took mutex 0x2000c7ec, count: 1, orig prio: -1
[00:00:02.513,488] &amp;lt;dbg&amp;gt; lte_lc: event_handler_list_dispatch: Dispatching event: type=3
[00:00:02.522,308] &amp;lt;dbg&amp;gt; lte_lc: event_handler_list_dispatch:  - handler=0x0001027D
[00:00:02.530,761] &amp;lt;dbg&amp;gt; lte_lc: event_handler_list_dispatch:  - handler=0x0000850D
RRC mode: Connected
[00:00:02.541,076] &amp;lt;dbg&amp;gt; lte_lc: event_handler_list_dispatch: Done
[00:00:02.548,065] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_unlock: mutex 0x2000c7ec lock_count: 1
[00:00:02.556,427] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_unlock: new owner of mutex 0x2000c7ec: 0 (prio: -1000)
[00:00:04.746,276] &amp;lt;dbg&amp;gt; at_monitor: at_monitor_task: AT notif: +CEREG: 5,&amp;quot;7170&amp;quot;,&amp;quot;0093917B&amp;quot;,7,,,&amp;quot;11100000&amp;quot;,&amp;quot;11100000&amp;quot;
[00:00:04.757,751] &amp;lt;dbg&amp;gt; at_monitor: at_monitor_task: Dispatching to 0xf569
[00:00:04.765,533] &amp;lt;dbg&amp;gt; lte_lc: at_handler_cereg: +CEREG notification: +CEREG: 5,&amp;quot;7170&amp;quot;,&amp;quot;0093917B&amp;quot;,7,,,&amp;quot;11100000&amp;quot;,&amp;quot;11100000&amp;quot;
[00:00:04.777,740] &amp;lt;dbg&amp;gt; lte_lc: parse_cereg: Network registration status: 5
[00:00:04.785,705] &amp;lt;dbg&amp;gt; lte_lc: parse_cereg: LTE mode: 7
[00:00:04.791,900] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_lock: 0x2000cd70 took mutex 0x2000c7ec, count: 1, orig prio: -1
[00:00:04.802,429] &amp;lt;dbg&amp;gt; lte_lc: event_handler_list_dispatch: Dispatching event: type=0
[00:00:04.811,248] &amp;lt;dbg&amp;gt; lte_lc: event_handler_list_dispatch:  - handler=0x0001027D
[00:00:04.819,732] &amp;lt;dbg&amp;gt; date_time: date_time_lte_ind_handler: Date time update scheduled in 1 second due to LTE registration
[00:00:04.831,878] &amp;lt;dbg&amp;gt; lte_lc: event_handler_list_dispatch:  - handler=0x0000850D
Network registration prestatus: 5
Network registration status: Connected - roaming
[00:00:04.847,808] &amp;lt;dbg&amp;gt; lte_lc: event_handler_list_dispatch: Done
[00:00:04.854,797] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_unlock: mutex 0x2000c7ec lock_count: 1
[00:00:04.863,189] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_unlock: new owner of mutex 0x2000c7ec: 0 (prio: -1000)
[00:00:04.873,016] &amp;lt;dbg&amp;gt; at_monitor: at_monitor_task: AT notif: %XTIME: &amp;quot;0A&amp;quot;,&amp;quot;6220017192300A&amp;quot;,&amp;quot;00&amp;quot;
[00:00:04.882,781] &amp;lt;dbg&amp;gt; at_monitor: at_monitor_task: Dispatching to 0x10941
[00:00:04.890,594] &amp;lt;dbg&amp;gt; date_time: date_time_core_current_check: Date time never set
[00:00:04.899,291] &amp;lt;dbg&amp;gt; date_time: date_time_at_xtime_handler: Time obtained from cellular network (XTIME notification)
[00:00:04.911,041] &amp;lt;dbg&amp;gt; date_time: date_time_core_schedule_update: New periodic date time update in: 14400 seconds
[00:00:04.922,332] &amp;lt;dbg&amp;gt; date_time: date_time_core_store_tz: System time updated: 2026-02-10 17:29:03-20
[00:00:04.932,617] &amp;lt;dbg&amp;gt; date_time: date_time_core_notify_event: No date-time event handler registered
[00:00:15.916,503] &amp;lt;dbg&amp;gt; at_monitor: at_monitor_task: AT notif: +CSCON: 0
[00:00:15.924,041] &amp;lt;dbg&amp;gt; at_monitor: at_monitor_task: Dispatching to 0xfc9d
[00:00:15.931,823] &amp;lt;dbg&amp;gt; lte_lc: at_handler_cscon: +CSCON notification
[00:00:15.939,178] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_lock: 0x2000cd70 took mutex 0x2000c7ec, count: 1, orig prio: -1
[00:00:15.949,737] &amp;lt;dbg&amp;gt; lte_lc: event_handler_list_dispatch: Dispatching event: type=3
[00:00:15.958,557] &amp;lt;dbg&amp;gt; lte_lc: event_handler_list_dispatch:  - handler=0x0001027D
[00:00:15.967,010] &amp;lt;dbg&amp;gt; lte_lc: event_handler_list_dispatch:  - handler=0x0000850D
RRC mode: Idle

[00:00:15.977,050] &amp;lt;dbg&amp;gt; lte_lc: event_handler_list_dispatch: Done
[00:00:15.984,039] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_unlock: mutex 0x2000c7ec lock_count: 1
[00:00:15.992,431] &amp;lt;dbg&amp;gt; os: z_impl_k_mutex_unlock: new owner of mutex 0x2000c7ec: 0 (prio: -1000)&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Shall I send a modem trace as well?&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Cannot connect using connection manager</title><link>https://devzone.nordicsemi.com/thread/560790?ContentTypeID=1</link><pubDate>Tue, 10 Feb 2026 12:28:35 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4f819805-a9f8-4b05-bd00-6a8e5697fac3</guid><dc:creator>&amp;#216;yvind</dc:creator><description>&lt;p&gt;Hello,&lt;br /&gt;&lt;br /&gt;What happens after &amp;quot;Connecting to the network&amp;quot;? Are you able to connect to the network at all? How long did you leave it running? What SIM are you using? What modem FW are you running in the nRF9160? Will need to try to replicate on my side.&amp;nbsp;&lt;/p&gt;
[quote user=""]I&amp;#39;m able to connect to an LTE network manually like so:[/quote]
&lt;p&gt;Could you share logs from a successful connection?&lt;/p&gt;
&lt;p&gt;Kind regards,&lt;br /&gt;Øyvind&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>