diff --git a/sys/include/net/gnrc/ipv6/nib/conf.h b/sys/include/net/gnrc/ipv6/nib/conf.h index 59293aa4d3..45b5c56fce 100644 --- a/sys/include/net/gnrc/ipv6/nib/conf.h +++ b/sys/include/net/gnrc/ipv6/nib/conf.h @@ -38,6 +38,9 @@ extern "C" { #ifndef CONFIG_GNRC_IPV6_NIB_SLAAC #define CONFIG_GNRC_IPV6_NIB_SLAAC 1 #endif +#ifndef CONFIG_GNRC_IPV6_NIB_QUEUE_PKT +#define CONFIG_GNRC_IPV6_NIB_QUEUE_PKT 1 +#endif #ifndef CONFIG_GNRC_IPV6_NIB_NUMOF #define CONFIG_GNRC_IPV6_NIB_NUMOF (16) #endif diff --git a/sys/net/gnrc/network_layer/ipv6/nib/Kconfig b/sys/net/gnrc/network_layer/ipv6/nib/Kconfig index 2903a87aa4..8370ed8d0f 100644 --- a/sys/net/gnrc/network_layer/ipv6/nib/Kconfig +++ b/sys/net/gnrc/network_layer/ipv6/nib/Kconfig @@ -47,6 +47,7 @@ config GNRC_IPV6_NIB_QUEUE_PKT config GNRC_IPV6_NIB_ARSM bool "Use classic NDP address resolution state-machine" + default y if USEMODULE_GNRC_IPV6_NIB_6LBR default n if USEMODULE_GNRC_IPV6_NIB_6LN && !GNRC_IPV6_NIB_6LR default y