diff options
| author | Kaushik <kaushiknath.null@gmail.com> | 2021-03-25 04:29:51 -0700 | 
|---|---|---|
| committer | Rafael Zalamena <rzalamena@opensourcerouting.org> | 2021-06-04 07:23:10 -0300 | 
| commit | ad500b22b5fc3bc34009b7212c7c3b2f6c4375aa (patch) | |
| tree | f24f206101ffcbfc968ad97fd54a71b94c134ccb /ospf6d/subdir.am | |
| parent | 10ddcc321a59de099ee357fd5cca229a8c3110bf (diff) | |
ospf6d: Support for nssa in ospfv3
The following is implemented.
1. Configuring area as NSSA.
2. Generating Type 7 LSA.
3. Conversion of Type 7 to Type 5 ( Default Behavior).
4. NSSA ABR selection.
Reviewed-by: Rafael Zalamena <rzalamena@opensourcerouting.org>
Co-authored-by: Kaushik <kaushiknath.null@gmail.com>
Co-authored-by: Soman K.S <somanks@gmail.com>
Signed-off-by: Kaushik <kaushiknath.null@gmail.com>
Diffstat (limited to 'ospf6d/subdir.am')
| -rw-r--r-- | ospf6d/subdir.am | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/ospf6d/subdir.am b/ospf6d/subdir.am index 00388afd38..2e1891be71 100644 --- a/ospf6d/subdir.am +++ b/ospf6d/subdir.am @@ -6,6 +6,7 @@ if OSPF6D  noinst_LIBRARIES += ospf6d/libospf6.a  sbin_PROGRAMS += ospf6d/ospf6d  vtysh_scan += \ +	ospf6d/ospf6_nssa.c \  	ospf6d/ospf6_abr.c \  	ospf6d/ospf6_asbr.c \  	ospf6d/ospf6_area.c \ @@ -30,6 +31,7 @@ man8 += $(MANBUILD)/frr-ospf6d.8  endif  ospf6d_libospf6_a_SOURCES = \ +	ospf6d/ospf6_nssa.c \  	ospf6d/ospf6_abr.c \  	ospf6d/ospf6_area.c \  	ospf6d/ospf6_asbr.c \ @@ -53,6 +55,7 @@ ospf6d_libospf6_a_SOURCES = \  	# end  noinst_HEADERS += \ +	ospf6d/ospf6_nssa.h \  	ospf6d/ospf6_abr.h \  	ospf6d/ospf6_area.h \  	ospf6d/ospf6_asbr.h \  | 
