diff options
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | src/config.c | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -100,7 +100,7 @@ ra_management integer 1 RA management mode ra_offlink bool 0 Announce prefixes off-link ra_preference string medium Route(r) preference [medium|high|low] -ndproxy_routing bool 0 Learn routes from NDP +ndproxy_routing bool 1 Learn routes from NDP ndproxy_slave bool 0 NDProxy external slave ndproxy_static list Static NDProxy prefixes diff --git a/src/config.c b/src/config.c index 38a3e7a..1428686 100644 --- a/src/config.c +++ b/src/config.c @@ -470,6 +470,8 @@ int config_parse_interface(void *data, size_t len, const char *name, bool overwr if ((c = tb[IFACE_ATTR_NDPROXY_ROUTING])) iface->learn_routes = blobmsg_get_bool(c); + else + iface->learn_routes = true; if ((c = tb[IFACE_ATTR_NDPROXY_SLAVE])) iface->external = blobmsg_get_bool(c); |