diff options
| author | Jafar Al-Gharaibeh <Jafaral@users.noreply.github.com> | 2018-07-25 17:04:02 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-25 17:04:02 -0500 |
| commit | c11b11d566d25db83cf9a6d615ef2bc270ae7ce5 (patch) | |
| tree | 26151443eb321293f022a20c527d851c3edce4b0 | |
| parent | b77da155be6bad3469b4dd0a68fc3fd1f326a3ae (diff) | |
| parent | fdd8e252d44f15aa210f43df1ccc86760e3dc3cb (diff) | |
Merge pull request #2681 from qlyoung/doc-cleanup-rpki
doc: cleanup rpki.rst
| -rw-r--r-- | doc/user/rpki.rst | 54 |
1 files changed, 28 insertions, 26 deletions
diff --git a/doc/user/rpki.rst b/doc/user/rpki.rst index 38b2b68e98..4f271dee74 100644 --- a/doc/user/rpki.rst +++ b/doc/user/rpki.rst @@ -60,39 +60,41 @@ 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 :ref:`configuring-rpki-rtr-cache-servers` for configuring a cache server. -.. _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. + 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: Configuring RPKI/RTR Cache Servers ---------------------------------- |
