diff options
author | Olivier Dugeon <olivier.dugeon@orange.com> | 2018-10-26 19:12:41 +0200 |
---|---|---|
committer | Philippe Guibert <philippe.guibert@6wind.com> | 2018-11-09 10:09:47 +0100 |
commit | ddd73a968dc61766b6a44442c0bccd7ff0a643a8 (patch) | |
tree | 228365f0477115012e2ae36bf37b2181558c57ae /ospfd/ospf_memory.c | |
parent | Merge pull request #3202 from donaldsharp/evpn_dump (diff) | |
download | frr-ddd73a968dc61766b6a44442c0bccd7ff0a643a8.tar.xz frr-ddd73a968dc61766b6a44442c0bccd7ff0a643a8.zip |
OSPF: Add support to multi-area to Router Info.
Router Information needs to specify the area ID when flooding scope is set to
AREA. However, this authorize only one AREA. Thus, Area Border Router (ABR) are
unable to flood Router Information Opaque LSA in all areas they are belongs to.
The path implies that the area ID is no more necessary for the command
'router-info area'. It remains suported for compatibility, but mark as
deprecated. Documentation has been updated accordingly.
Signed-off-by: Olivier Dugeon <olivier.dugeon@orange.com>
Diffstat (limited to 'ospfd/ospf_memory.c')
-rw-r--r-- | ospfd/ospf_memory.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ospfd/ospf_memory.c b/ospfd/ospf_memory.c index 1332104b0..c4dc0136e 100644 --- a/ospfd/ospf_memory.c +++ b/ospfd/ospf_memory.c @@ -52,6 +52,7 @@ DEFINE_MTYPE(OSPFD, OSPF_IF_INFO, "OSPF if info") DEFINE_MTYPE(OSPFD, OSPF_IF_PARAMS, "OSPF if params") DEFINE_MTYPE(OSPFD, OSPF_MESSAGE, "OSPF message") DEFINE_MTYPE(OSPFD, OSPF_MPLS_TE, "OSPF MPLS parameters") +DEFINE_MTYPE(OSPFD, OSPF_ROUTER_INFO, "OSPF Router Info parameters") DEFINE_MTYPE(OSPFD, OSPF_PCE_PARAMS, "OSPF PCE parameters") DEFINE_MTYPE(OSPFD, OSPF_EXT_PARAMS, "OSPF Extended parameters") DEFINE_MTYPE(OSPFD, OSPF_SR_PARAMS, "OSPF Segment Routing parameters") |