From 63a8f46d9e1dd472ff31973aa8fc528a71b5aaf8 Mon Sep 17 00:00:00 2001 From: Oleg Hahm Date: Mon, 4 Nov 2024 16:02:00 +0100 Subject: [PATCH] examples/gnrc_border_router: request temp address Additionally to requesting a delegated prefix via DHCPv6 this also enables to ask for a temporary (non-permanent) address on the 6lbr. If the upstream DHCP server provides one, this can be used to establish end-to-end connectivity from the 6lbr towards an Internet host directly. --- examples/gnrc_border_router/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/gnrc_border_router/Makefile b/examples/gnrc_border_router/Makefile index c52d31ce92..8c782ceedb 100644 --- a/examples/gnrc_border_router/Makefile +++ b/examples/gnrc_border_router/Makefile @@ -57,6 +57,9 @@ endif ifeq (dhcpv6,$(PREFIX_CONF)) # include DHCPv6 client for 6LoWPAN border router USEMODULE += gnrc_dhcpv6_client_6lbr + # optionally also request an address via IA_NA in addition to the prefix. + # this is not needed when using SLAAC + USEMODULE += dhcpv6_client_ia_na else ifeq (uhcp,$(PREFIX_CONF)) # include UHCP client USEMODULE += gnrc_uhcpc