:orphan: .. title:: CONFIG_NET_DHCPV4_INITIAL_DELAY_MAX .. kconfig:: CONFIG_NET_DHCPV4_INITIAL_DELAY_MAX CONFIG_NET_DHCPV4_INITIAL_DELAY_MAX ################################### *Maximum time out for initial discover request* Type: ``int`` Help ==== .. code-block:: none As per RFC2131 4.1.1, we wait a random period between 1 and 10 seconds before sending the initial discover. Direct dependencies =================== \ :kconfig:`NET_DHCPV4 ` && \ :kconfig:`NET_IPV4 ` && !\ :kconfig:`NET_RAW_MODE ` && \ :kconfig:`NETWORKING ` *(Includes any dependencies from ifs and menus.)* Default ======= - 10 Kconfig definition ================== At ``/net/ip/Kconfig.ipv4:65`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:39`` → ``/net/Kconfig:87`` → ``/net/ip/Kconfig:117`` Menu path: (Top) → Sub Systems and OS Services → Networking → Link layer and IP networking support → IP stack → IPv4 → Enable DHCPv4 client .. code-block:: kconfig config NET_DHCPV4_INITIAL_DELAY_MAX int "Maximum time out for initial discover request" range 2 10 default 10 depends on NET_DHCPV4 && NET_IPV4 && !NET_RAW_MODE && NETWORKING help As per RFC2131 4.1.1, we wait a random period between 1 and 10 seconds before sending the initial discover. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*