:orphan: .. title:: CONFIG_NET_CONFIG_INIT_TIMEOUT .. kconfig:: CONFIG_NET_CONFIG_INIT_TIMEOUT CONFIG_NET_CONFIG_INIT_TIMEOUT ############################## *How long to wait for networking to be ready and available* Type: ``int`` Help ==== .. code-block:: none The value is in seconds. If for example IPv4 address from DHCPv4 is not received within this limit, then the net_config_init() call will fail during the device startup. Direct dependencies =================== \ :kconfig:`NETWORKING ` *(Includes any dependencies from ifs and menus.)* Default ======= - 30 Kconfig definition ================== At ``/net/lib/config/Kconfig:20`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:39`` → ``/net/Kconfig:89`` → ``/net/lib/Kconfig:28`` Menu path: (Top) → Sub Systems and OS Services → Networking → Link layer and IP networking support → Network Libraries .. code-block:: kconfig config NET_CONFIG_INIT_TIMEOUT int "How long to wait for networking to be ready and available" default 30 depends on NETWORKING help The value is in seconds. If for example IPv4 address from DHCPv4 is not received within this limit, then the net_config_init() call will fail during the device startup. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*