We are using zephyr's conn_mgr to manage the network connection. From what I can tell, if I have set CONFIG_NRF_MODEM_NET_IF=y and NRF_MODEM_LIB_NET_IF_CONNECTION__PERSISTENCE=y, conn_mgr (or the nrf_modem_lib_net_if implementation) should automatically handle reconnecting to LTE when the connection fails. On top of this, we have implemented a thread to reconnect mqtt_helper when the network comes back up. However, during testing devices would sometimes disconnect while travelling around, and never regain their connection to the broker (assumption this is due to LTE connection). Is there a possibility that conn_mgr doesn't reconnect properly? What is the best way for me to simulate a "network disconnection" without having to travel around? Is conn_mgr handling LTE via nrf_modem_lib_net_if OK, or is it recommended to handle the LTE connection entirely myself? (I can see that the Asset Tracker Template does not use conn_mgr, for example)