diff options
author | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-05-22 19:50:30 +0200 |
---|---|---|
committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-05-22 19:55:20 +0200 |
commit | da7e1a92124aba935805cea806dbed6d2bef5b68 (patch) | |
tree | c06b753e7c25bb9b0042f51c13944265af13b167 | |
parent | Merge pull request #2273 from qlyoung/remove-retain-mode (diff) | |
download | frr-da7e1a92124aba935805cea806dbed6d2bef5b68.tar.xz frr-da7e1a92124aba935805cea806dbed6d2bef5b68.zip |
doc: move -r option docs to zebra only
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to '')
-rw-r--r-- | doc/manpages/common-options.rst | 7 | ||||
-rw-r--r-- | doc/manpages/zebra.rst | 8 | ||||
-rw-r--r-- | doc/user/bgp.rst | 4 | ||||
-rw-r--r-- | doc/user/eigrpd.rst | 4 | ||||
-rw-r--r-- | doc/user/ripd.rst | 3 | ||||
-rw-r--r-- | doc/user/setup.rst | 4 | ||||
-rw-r--r-- | doc/user/zebra.rst | 3 |
7 files changed, 12 insertions, 21 deletions
diff --git a/doc/manpages/common-options.rst b/doc/manpages/common-options.rst index e433c720a..e9241b743 100644 --- a/doc/manpages/common-options.rst +++ b/doc/manpages/common-options.rst @@ -157,10 +157,3 @@ frr supports optional dynamically loadable modules, although these can only be l The list of loaded modules can be inspected at runtime with the show modules VTY command. -ROUTES ------- - -.. option:: -r, --retain - - When the program terminates, retain routes added by the daemon. - diff --git a/doc/manpages/zebra.rst b/doc/manpages/zebra.rst index 4ddf98995..a8a930158 100644 --- a/doc/manpages/zebra.rst +++ b/doc/manpages/zebra.rst @@ -42,6 +42,14 @@ OPTIONS available for the |DAEMON| command: Enable namespace VRF backend. By default, the VRF backend relies on VRF-lite support from the Linux kernel. This option permits discovering Linux named network namespaces and mapping it to FRR VRF contexts. +ROUTES +------ + +.. option:: -r, --retain + + When the program terminates, do not flush routes installed by zebra from the kernel. + + FILES ===== diff --git a/doc/user/bgp.rst b/doc/user/bgp.rst index 861e3d0d6..9332fdf3b 100644 --- a/doc/user/bgp.rst +++ b/doc/user/bgp.rst @@ -30,10 +30,6 @@ be specified (:ref:`common-invocation-options`). Set the bgp protocol's port number. When port number is 0, that means do not listen bgp port. -.. option:: -r, --retain - - When program terminates, retain BGP routes added by zebra. - .. option:: -l, --listenon Specify a specific IP address for bgpd to listen on, rather than its diff --git a/doc/user/eigrpd.rst b/doc/user/eigrpd.rst index 6034bf894..330267a8e 100644 --- a/doc/user/eigrpd.rst +++ b/doc/user/eigrpd.rst @@ -60,10 +60,6 @@ Certain signals have special meanings to *eigrpd*. .. program:: eigrpd -.. option:: -r, --retain - - When the program terminates, retain routes added by *eigrpd*. - .. _eigrp-configuration: EIGRP Configuration diff --git a/doc/user/ripd.rst b/doc/user/ripd.rst index 973e61949..372c30f58 100644 --- a/doc/user/ripd.rst +++ b/doc/user/ripd.rst @@ -60,9 +60,6 @@ Certain signals have special meanings to *ripd*. *ripd* invocation options. Common options that can be specified (:ref:`common-invocation-options`). -.. option:: -r, --retain - - When the program terminates, retain routes added by *ripd*. .. _rip-netmask: diff --git a/doc/user/setup.rst b/doc/user/setup.rst index 9971c43c5..1bbbe3693 100644 --- a/doc/user/setup.rst +++ b/doc/user/setup.rst @@ -50,7 +50,7 @@ This file has several parts. Here is an example: # Check /etc/pam.d/frr if you intend to use "vtysh"! # vtysh_enable=yes - zebra_options=" -r -s 90000000 --daemon -A 127.0.0.1" + zebra_options=" -s 90000000 --daemon -A 127.0.0.1" bgpd_options=" --daemon -A 127.0.0.1" ospfd_options=" --daemon -A 127.0.0.1" ospf6d_options=" --daemon -A ::1" @@ -86,7 +86,7 @@ reasons touched on in the VTYSH documentation and should generally be enabled. :: - zebra_options=" -r -s 90000000 --daemon -A 127.0.0.1" + zebra_options=" -s 90000000 --daemon -A 127.0.0.1" bgpd_options=" --daemon -A 127.0.0.1" ... diff --git a/doc/user/zebra.rst b/doc/user/zebra.rst index a2cf3627a..9e377330e 100644 --- a/doc/user/zebra.rst +++ b/doc/user/zebra.rst @@ -29,7 +29,8 @@ Besides the common invocation options (:ref:`common-invocation-options`), the .. option:: -r, --retain - When program terminates, retain routes added by zebra. + When program terminates, do not flush routes installed by *zebra* from the + kernel. .. option:: -e X, --ecmp X |