summaryrefslogtreecommitdiffstats
path: root/doc/user/rpki.rst
diff options
context:
space:
mode:
authorChristoffer <netravnen@gmail.com>2018-07-17 18:43:49 +0200
committerChristoffer <netravnen@gmail.com>2018-07-17 18:45:33 +0200
commit04a18e32670f2eee06bc2bb68851c6e2cefbd831 (patch)
treec0d6f36ed5fa89160dbc24bbcc7aea9577fa65b1 /doc/user/rpki.rst
parentMerge pull request #2625 from pguibert6WIND/ipv4_ipv6_bgp_show (diff)
downloadfrr-04a18e32670f2eee06bc2bb68851c6e2cefbd831.tar.xz
frr-04a18e32670f2eee06bc2bb68851c6e2cefbd831.zip
doc: Update rpki.rst for how-to enable rpki module
It has not been properly documented yet how to enable the RPKI module with BGP when having installed FRR with RPKI support. This PR seeks to add a section to the user documentation about this. So users will not have to resolve to searching the internet and looking through the FROG mailing list threads for answers.
Diffstat (limited to '')
-rw-r--r--doc/user/rpki.rst26
1 files changed, 26 insertions, 0 deletions
diff --git a/doc/user/rpki.rst b/doc/user/rpki.rst
index c35928db0..38b2b68e9 100644
--- a/doc/user/rpki.rst
+++ b/doc/user/rpki.rst
@@ -68,6 +68,32 @@ Enabling RPKI
.. _configuring-rpki-rtr-cache-servers:
+.. index:: daemons.conf
+
+ When first installing FRR with RPKI support from the pre-packaged binaries. Remember
+ to append '-M rpki' in the /etc/frr/daemons.conf file to the bgpd_options.
+
+ bgpd_options=" --daemon -A 127.0.0.1 -M rpki"
+ instead of the default setting
+ bgpd_options=" --daemon -A 127.0.0.1"
+
+
+ Else you will encounter an error when trying to enter RPKI configuration mode. Because
+ the rpki module is not loaded when the BGP daemon is initialized.
+
+ Examples of the error:
+
+ router(config)# debug rpki
+ % [BGP] Unknown command: debug rpki
+
+ router(config)# rpki
+ % [BGP] Unknown command: rpki
+
+ Note that the rpki commands will be available in vtysh when running 'find rpki'.
+ Even if the RPKI module is NOT loaded.
+ The RPKI commands will be unavailable if you try running the same command in the
+ cli specific to the BGP daemon.
+
Configuring RPKI/RTR Cache Servers
----------------------------------