]> git.puffer.fish Git - mirror/frr.git/commitdiff
doc: cleanup rpki.rst
authorQuentin Young <qlyoung@cumulusnetworks.com>
Wed, 18 Jul 2018 19:22:14 +0000 (19:22 +0000)
committerQuentin Young <qlyoung@cumulusnetworks.com>
Wed, 18 Jul 2018 19:22:14 +0000 (19:22 +0000)
Previous commit on this file introduced formatting issues.

Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
doc/user/rpki.rst

index 38b2b68e98e022520f1b01f0cf3bf83ed7099ed4..59a0d3c226d114579eb1f0ba522b2ab39498b49b 100644 (file)
@@ -60,7 +60,8 @@ Enabling RPKI
    This command enables the RPKI configuration mode. Most commands that start
    with *rpki* can only be used in this mode.
 
-   When it is used in a telnet session, leaving of this mode cause rpki to be initialized.
+   When it is used in a telnet session, leaving of this mode cause rpki to be
+   initialized.
 
    Executing this command alone does not activate prefix validation. You need
    to configure at least one reachable cache server. See section
@@ -70,29 +71,30 @@ Enabling RPKI
 
 .. 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.
+   When first installing FRR with RPKI support from the pre-packaged binaries.
+   Remember to append :option:`-M rpki` in the :file:`/etc/frr/daemons.conf`
+   file to ``bgpd_options``, like so::
+
+      bgpd_options="   --daemon -A 127.0.0.1 -M rpki"
+
+   instead of the default setting::
+
+      bgpd_options="   --daemon -A 127.0.0.1"
+
+   Otherwise you will encounter an error when trying to enter RPKI
+   configuration mode due to the ``rpki`` module not being 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`` regardless of whether the module is loaded.
 
 Configuring RPKI/RTR Cache Servers
 ----------------------------------