diff --git a/proto/bgp/bgp.c b/proto/bgp/bgp.c index 4651b76a..f8146bdf 100644 --- a/proto/bgp/bgp.c +++ b/proto/bgp/bgp.c @@ -1414,6 +1414,16 @@ bgp_reload_routes(struct channel *C) struct bgp_proto *p = (void *) C->proto; struct bgp_channel *c = (void *) C; + /* For MPLS channel, reload all MPLS-aware channels */ + if (C == p->p.mpls_channel) + { + BGP_WALK_CHANNELS(p, c) + if ((c->desc->mpls) && (p->route_refresh || c->c.in_table)) + bgp_reload_routes(&c->c); + + return; + } + /* Ignore non-BGP channels */ if (C->channel != &channel_bgp) return; diff --git a/proto/l3vpn/l3vpn.c b/proto/l3vpn/l3vpn.c index 38441208..b7f60504 100644 --- a/proto/l3vpn/l3vpn.c +++ b/proto/l3vpn/l3vpn.c @@ -296,7 +296,8 @@ l3vpn_reload_routes(struct channel *C) break; case NET_MPLS: - /* FIXME */ + channel_request_feeding(p->ip4_channel); + channel_request_feeding(p->ip6_channel); break; } }