diff --git a/examples/nettest/nettest.c b/examples/nettest/nettest.c index 12b33e02b..5f6c97b4e 100644 --- a/examples/nettest/nettest.c +++ b/examples/nettest/nettest.c @@ -159,6 +159,11 @@ static void netest_initialize(void) netlib_set_ipv6netmask("eth0", (FAR const struct in6_addr *)g_ipv6_netmask); + /* New versions of netlib_set_ipv6addr will not bring the network up, + * So ensure the network is really up at this point. */ + + netlib_ifup("eth0"); + #endif /* CONFIG_NET_ICMPv6_AUTOCONF */ #else /* CONFIG_EXAMPLES_NETTEST_IPv6 */