1# DHCPv4 server implementation for Zephyr
2
3# Copyright (c) 2024 Nordic Semiconductor ASA
4#
5# SPDX-License-Identifier: Apache-2.0
6
7
8# Copyright (c) 2024 Nordic Semiconductor ASA
9#
10# SPDX-License-Identifier: Apache-2.0
11
12config NET_DHCPV6
13	bool "DHCPv6 client"
14	select NET_MGMT
15	select NET_MGMT_EVENT
16	depends on NET_IPV6 && NET_UDP
17
18config NET_DHCPV6_DUID_MAX_LEN
19	int "The maximum DUID length (not including a type code)"
20	range 1 128
21	default 22
22	help
23	  This will set the available number of bytes for the DUID.
24
25if NET_DHCPV6
26module = NET_DHCPV6
27module-dep = NET_LOG
28module-str = Log level for DHCPv6 client
29module-help = Enables DHCPv6 client code to output debug messages.
30source "subsys/net/Kconfig.template.log_config.net"
31endif # NET_DHCPV6
32