diff options
author | Michael Rossberg <michael.rossberg@tu-ilmenau.de> | 2015-07-27 07:56:25 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-06-09 16:20:20 +0200 |
commit | 16e56a14321c0690178816353373adac02d2c0b2 (patch) | |
tree | bab61e3350577160fe7f9641c5fbd20804846684 /ospfd/ospf_flood.c | |
parent | Fix _netlink_route_debug message (diff) | |
download | frr-16e56a14321c0690178816353373adac02d2c0b2.tar.xz frr-16e56a14321c0690178816353373adac02d2c0b2.zip |
ospfd: Fast OSPF convergence
When considering small networks that have extreme requirements on
availability and thus convergence delay, the timers given in the OSPF RFC
seem a little “conservative”, i.e., the delay between accepted LSAs and the
rate at which LSAs are sent. Cisco introduced two commands 'timers throttle
lsa all’ and 'timers lsa arrival’, which allow operators to tune these
parameters.
I have been writing a patch to also support 'timers lsa arrival’ fully and
‘timers throttle lsa all’ (without the throttling part) also in quagga.
Diffstat (limited to 'ospfd/ospf_flood.c')
-rw-r--r-- | ospfd/ospf_flood.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ospfd/ospf_flood.c b/ospfd/ospf_flood.c index d0d446f7a..e9f443111 100644 --- a/ospfd/ospf_flood.c +++ b/ospfd/ospf_flood.c @@ -284,7 +284,7 @@ ospf_flood (struct ospf *ospf, struct ospf_neighbor *nbr, ; /* Accept this LSA for quick LSDB resynchronization. */ } else if (tv_cmp (tv_sub (recent_relative_time (), current->tv_recv), - intms2tv (ospf->min_ls_arrival)) < 0) + msec2tv (ospf->min_ls_arrival)) < 0) { if (IS_DEBUG_OSPF_EVENT) zlog_debug ("LSA[Flooding]: LSA is received recently."); |