diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2023-01-22 18:12:04 +0100 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2023-01-22 18:21:08 +0100 |
commit | a82683694da23799f247b3392a00efdd342afdfc (patch) | |
tree | 0dab0d2f8d39a56f14bd989912d2364db124e4d9 /proto/radv/radv.c | |
parent | 3186ffe79714a48542d5ad61a94c81216b522fd0 (diff) |
VRF: Fix issues with reconfiguration
Protocols receive if_notify() announcements that are filtered according
to their VRF setting, but during reconfiguration, they access iface_list
directly and forgot to check VRF setting here, which leads to all
interfaces be addedd.
Fix this issue for Babel, OSPF, RAdv and RIP protocols.
Thanks to Marcel Menzel for the bugreport.
Diffstat (limited to 'proto/radv/radv.c')
-rw-r--r-- | proto/radv/radv.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/proto/radv/radv.c b/proto/radv/radv.c index 541c3986..119a8dc4 100644 --- a/proto/radv/radv.c +++ b/proto/radv/radv.c @@ -663,6 +663,9 @@ radv_reconfigure(struct proto *P, struct proto_config *CF) struct iface *iface; WALK_LIST(iface, iface_list) { + if (p->p.vrf_set && p->p.vrf != iface->master) + continue; + if (!(iface->flags & IF_UP)) continue; |