mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-06-13 12:16:31 +00:00
ospfd: default route got flushed after lsa refresh timer.
Default route type is not considered while processing lsa refresh timer expiry which intern makes it flushed from lsdb. Signed-off-by: rgirada <rgirada@vmware.com>
This commit is contained in:
parent
4d43d33d25
commit
a6b4e1fded
@ -91,7 +91,7 @@ struct external_info *ospf_external_info_check(struct ospf *ospf,
|
||||
p.prefix = lsa->data->id;
|
||||
p.prefixlen = ip_masklen(al->mask);
|
||||
|
||||
for (type = 0; type < ZEBRA_ROUTE_MAX; type++) {
|
||||
for (type = 0; type <= ZEBRA_ROUTE_MAX; type++) {
|
||||
int redist_on = 0;
|
||||
|
||||
redist_on =
|
||||
|
Loading…
Reference in New Issue
Block a user