:orphan: .. title:: NET_DHCPV4_INITIAL_DELAY_MAX .. option:: CONFIG_NET_DHCPV4_INITIAL_DELAY_MAX *Maximum time out for initial discover request* Type: ``int`` Help ==== As per RFC2131 4.1.1, we wait a random period between 1 and 10 seconds before sending the initial discover. Direct dependencies =================== \ :option:`NET_DHCPV4 ` && \ :option:`NET_IPV4 ` && !\ :option:`NET_RAW_MODE ` && \ :option:`NETWORKING ` *(Includes any dependencies from ifs and menus.)* Default ======= - 10 Kconfig definition ================== .. highlight:: kconfig At ``subsys/net/ip/Kconfig.ipv4:53`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:37`` → ``subsys/net/Kconfig:87`` → ``subsys/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 .. parsed-literal:: config NET_DHCPV4_INITIAL_DELAY_MAX int "Maximum time out for initial discover request" range 2 10 default 10 depends on \ :option:`NET_DHCPV4 ` && \ :option:`NET_IPV4 ` && !\ :option:`NET_RAW_MODE ` && \ :option:`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.)*