diff options
author | Kaushik <kaushiknath.null@gmail.com> | 2021-03-25 12:29:51 +0100 |
---|---|---|
committer | Rafael Zalamena <rzalamena@opensourcerouting.org> | 2021-06-04 12:23:10 +0200 |
commit | ad500b22b5fc3bc34009b7212c7c3b2f6c4375aa (patch) | |
tree | f24f206101ffcbfc968ad97fd54a71b94c134ccb /ospf6d/ospf6_proto.h | |
parent | Merge pull request #8776 from anlancs/fix-ospf-cli-passive-interface (diff) | |
download | frr-ad500b22b5fc3bc34009b7212c7c3b2f6c4375aa.tar.xz frr-ad500b22b5fc3bc34009b7212c7c3b2f6c4375aa.zip |
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/ospf6_proto.h')
-rw-r--r-- | ospf6d/ospf6_proto.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ospf6d/ospf6_proto.h b/ospf6d/ospf6_proto.h index da6b270e0..b98dc38b7 100644 --- a/ospf6d/ospf6_proto.h +++ b/ospf6d/ospf6_proto.h @@ -35,6 +35,8 @@ #define OSPF6_ROUTER_BIT_V (1 << 2) #define OSPF6_ROUTER_BIT_E (1 << 1) #define OSPF6_ROUTER_BIT_B (1 << 0) +#define OSPF6_ROUTER_BIT_NT (1 << 4) + /* OSPF options */ /* present in HELLO, DD, LSA */ |