From 8aca3ac8aa982eff281991851b079ff3bf2dcaff Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Fri, 3 Jan 2014 12:04:15 +0100 Subject: [PATCH] Learn routes in NDP-proxy by default --- README | 2 +- src/config.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README b/README index 0d59952..58085e3 100644 --- a/README +++ b/README @@ -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); -- 2.11.0