:orphan: .. title:: CONFIG_NET_CONNECTION_MANAGER .. kconfig:: CONFIG_NET_CONNECTION_MANAGER CONFIG_NET_CONNECTION_MANAGER ############################# *Enable network connection manager [EXPERIMENTAL]* Type: ``bool`` Help ==== .. code-block:: none When enabled, this will start the connection manager that will listen to network interface and IP events in order to verify whether an interface is connected or not. It will then raise L4 events "connected" or "disconnected" depending on the result. Direct dependencies =================== (\ :kconfig:`NET_IPV6 ` || \ :kconfig:`NET_IPV4 `) && \ :kconfig:`NETWORKING ` *(Includes any dependencies from ifs and menus.)* Defaults ======== No defaults. Implicitly defaults to ``n``. Symbols selected by this symbol =============================== - \ :kconfig:`NET_MGMT ` - \ :kconfig:`NET_MGMT_EVENT ` - \ :kconfig:`NET_MGMT_EVENT_INFO ` Kconfig definition ================== At ``/net/lib/conn_mgr/Kconfig:4`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:39`` → ``/net/Kconfig:89`` → ``/net/lib/Kconfig:38`` Menu path: (Top) → Sub Systems and OS Services → Networking → Link layer and IP networking support → Network additional services .. code-block:: kconfig menuconfig NET_CONNECTION_MANAGER bool "Enable network connection manager [EXPERIMENTAL]" select NET_MGMT select NET_MGMT_EVENT select NET_MGMT_EVENT_INFO depends on (NET_IPV6 || NET_IPV4) && NETWORKING help When enabled, this will start the connection manager that will listen to network interface and IP events in order to verify whether an interface is connected or not. It will then raise L4 events "connected" or "disconnected" depending on the result. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*