summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorMarcel Röthke <marcel.roethke@haw-hamburg.de>2017-11-10 13:56:24 +0100
committerMarcel Röthke <marcel.roethke@haw-hamburg.de>2017-11-10 14:37:52 +0100
commitdabecd7c63a6cb109e76a40bcbc890d336831c53 (patch)
tree088c3311aa53b22cb2a60aa349dba634e65e3538 /lib
parentospf6d: Fix setting interface ipv6 ospf6 cost value (LSA hooks were never cal... (diff)
downloadfrr-dabecd7c63a6cb109e76a40bcbc890d336831c53.tar.xz
frr-dabecd7c63a6cb109e76a40bcbc890d336831c53.zip
bgpd: Add RPKI/RTR support
This commit adds support for the RTR protocol to receive ROA information from a RPKI cache server. That information can than be used to validate the BGP origin AS of IP prefixes. Both features are implemented using [rtrlib](http://rtrlib.realmv6.org/). Signed-off-by: Marcel Röthke <marcel.roethke@haw-hamburg.de>
Diffstat (limited to 'lib')
-rw-r--r--lib/command.c1
-rw-r--r--lib/command.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/lib/command.c b/lib/command.c
index 2e91d84bf..a4d119053 100644
--- a/lib/command.c
+++ b/lib/command.c
@@ -117,6 +117,7 @@ const char *node_names[] = {
"vty", // VTY_NODE,
"link-params", // LINK_PARAMS_NODE,
"bgp evpn vni", // BGP_EVPN_VNI_NODE,
+ "rpki", // RPKI_NODE
};
/* Command vector which includes some level of command lists. Normally
diff --git a/lib/command.h b/lib/command.h
index 9e6c954f1..42dd1c532 100644
--- a/lib/command.h
+++ b/lib/command.h
@@ -140,6 +140,7 @@ enum node_type {
VTY_NODE, /* Vty node. */
LINK_PARAMS_NODE, /* Link-parameters node */
BGP_EVPN_VNI_NODE, /* BGP EVPN VNI */
+ RPKI_NODE, /* RPKI node for configuration of RPKI cache server connections.*/
NODE_TYPE_MAX, /* maximum */
};