diff options
author | Sebastien Merle <sebastien@netdef.org> | 2020-07-20 13:43:54 +0200 |
---|---|---|
committer | Sebastien Merle <sebastien@netdef.org> | 2020-08-07 11:08:49 +0200 |
commit | 31f937fb43f4920d14de6193de440279fbd5d99e (patch) | |
tree | 166a67318cfb4177398a40baca7d8fb4029fd10b /zebra/main.c | |
parent | lib: add possibility to search non-recursively for NB node entries (diff) | |
download | frr-31f937fb43f4920d14de6193de440279fbd5d99e.tar.xz frr-31f937fb43f4920d14de6193de440279fbd5d99e.zip |
lib, zebra: Add SR-TE policy infrastructure to zebra
For the sake of Segment Routing (SR) and Traffic Engineering (TE)
Policies there's a need for additional infrastructure within zebra.
The infrastructure in this PR is supposed to manage such policies
in terms of installing binding SIDs and LSPs. Also it is capable of
managing MPLS labels using the label manager, keeping track of
nexthops (for resolving labels) and notifying interested parties about
changes of a policy/LSP state. Further it enables a route map mechanism
for BGP and SR-TE colors such that learned BGP routes can be mapped
onto SR-TE Policies.
This PR does not introduce any usable features by now, it is just
infrastructure for other upcoming PRs which will introduce 'pathd',
a new SR-TE daemon.
Co-authored-by: Renato Westphal <renato@opensourcerouting.org>
Co-authored-by: GalaxyGorilla <sascha@netdef.org>
Signed-off-by: Sebastien Merle <sebastien@netdef.org>
Diffstat (limited to 'zebra/main.c')
-rw-r--r-- | zebra/main.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/zebra/main.c b/zebra/main.c index 92e94c2a2..64746f716 100644 --- a/zebra/main.c +++ b/zebra/main.c @@ -57,6 +57,7 @@ #include "zebra/zebra_routemap.h" #include "zebra/zebra_nb.h" #include "zebra/zebra_opaque.h" +#include "zebra/zebra_srte.h" #if defined(HANDLE_NETLINK_FUZZING) #include "zebra/kernel_netlink.h" @@ -438,9 +439,10 @@ int main(int argc, char **argv) zebra_pw_vty_init(); zebra_pbr_init(); zebra_opaque_init(); + zebra_srte_init(); -/* For debug purpose. */ -/* SET_FLAG (zebra_debug_event, ZEBRA_DEBUG_EVENT); */ + /* For debug purpose. */ + /* SET_FLAG (zebra_debug_event, ZEBRA_DEBUG_EVENT); */ /* Process the configuration file. Among other configuration * directives we can meet those installing static routes. Such |