From: Roy Marples Date: Wed, 4 Sep 2019 11:53:04 +0000 (+0300) Subject: Solaris: diable IFF_NOLOCAL for inet for now X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c7514a656b30b52c63453b238075e140fee7b7d8;p=thirdparty%2Fdhcpcd.git Solaris: diable IFF_NOLOCAL for inet for now --- diff --git a/src/if-sun.c b/src/if-sun.c index 3cdd12d0..2ceb5617 100644 --- a/src/if-sun.c +++ b/src/if-sun.c @@ -1625,8 +1625,13 @@ if_address(unsigned char cmd, const struct ipv4_addr *ia) /* We need to update the index now */ ia->iface->index = if_nametoindex(ia->alias); + /* Disabled for now - for some reason dhcpcd cannot setup + * the subnet route correctly even though it looks + * identical in netstat output. */ +#if 0 if (if_setflags(fd, ia->alias, IFF_NOLOCAL) == -1) return -1; +#endif sa_in_init(&addr.sa, &ia->addr); sa_in_init(&mask.sa, &ia->mask);