Merge pull request #11768 from donaldsharp/multiple_connected_installs

zebra: Don't install connected routes multiple times into FRR
This commit is contained in:
Donatas Abraitis 2022-08-10 14:04:18 +03:00 committed by GitHub
commit 9ad7e387be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -848,10 +848,6 @@ void if_handle_vrf_change(struct interface *ifp, vrf_id_t vrf_id)
/* Send out notification on interface VRF change. */
/* This is to issue an ADD, if needed. */
zebra_interface_vrf_update_add(ifp, old_vrf_id);
/* Install connected routes (in new VRF). */
if (if_is_operative(ifp))
if_install_connected(ifp);
}
static void ipv6_ll_address_to_mac(struct in6_addr *address, uint8_t *mac)