diff options
author | Chirag Shah <chirag@cumulusnetworks.com> | 2018-01-17 19:55:46 +0100 |
---|---|---|
committer | Chirag Shah <chirag@cumulusnetworks.com> | 2018-01-23 02:33:56 +0100 |
commit | da086a3ba69a87904f2cb10c75a16ee82b671bf4 (patch) | |
tree | ecddd57c0a778a379bb56f88ba68039c7d09262d /ospf6d/ospf6_lsa.h | |
parent | Merge pull request #1663 from donaldsharp/mpls (diff) | |
download | frr-da086a3ba69a87904f2cb10c75a16ee82b671bf4.tar.xz frr-da086a3ba69a87904f2cb10c75a16ee82b671bf4.zip |
ospf6d: spf calculation w/ multiple router lsas
An OSPFv3 enabled Router can originate or receive
multiple Link State-IDs for Router LSAs.
As per RFC 5340 A 4.3, more than one Router LSAs,
from given Vertex is considered (as concatenated)
single large Router LSA.
Created hidden show command to simulate concatenated
large LSA from advertising/self Router LSAs.
Ticket:CM-19329
Reviewed By:
Testing Done:
Simulate 160 subinterfaces between R1 === R2--R3,
This triggers R1 and R2 to generate multiple link state
IDs for Router LSAs. During SPF calculation only aggregated
single router LSA processed and SPF tree formed.
Signed-off-by: Chirag Shah <chirag@cumulusnetworks.com>
Diffstat (limited to 'ospf6d/ospf6_lsa.h')
-rw-r--r-- | ospf6d/ospf6_lsa.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ospf6d/ospf6_lsa.h b/ospf6d/ospf6_lsa.h index 3536d33d1..db446a328 100644 --- a/ospf6d/ospf6_lsa.h +++ b/ospf6d/ospf6_lsa.h @@ -252,5 +252,6 @@ extern void ospf6_lsa_terminate(void); extern int config_write_ospf6_debug_lsa(struct vty *vty); extern void install_element_ospf6_debug_lsa(void); +extern void ospf6_lsa_age_set(struct ospf6_lsa *lsa); #endif /* OSPF6_LSA_H */ |