summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJafar Al-Gharaibeh <jafar@atcorp.com>2022-06-15 12:30:48 -0500
committerGitHub <noreply@github.com>2022-06-15 12:30:48 -0500
commit17dbb034dd0ae66d16cb305ebaeec76c754bbc8a (patch)
treee694439559a1f0a76a97176a04b6051ab64205e7
parenteea9eedf5e776271877f560229235ba460bd6d08 (diff)
parent76faf78bc2b6102fe01da08ff690ceb1ff73e059 (diff)
Merge pull request #11413 from FRRouting/mergify/bp/dev/8.3/pr-11403
replace the import/export keywords for in/out (backport #11403)
-rw-r--r--doc/user/routeserver.rst16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/user/routeserver.rst b/doc/user/routeserver.rst
index 5100d679f7..969cd17920 100644
--- a/doc/user/routeserver.rst
+++ b/doc/user/routeserver.rst
@@ -183,7 +183,7 @@ in order to support the route server features.
that moment, every announcement received by the route server will be also
considered for the new Loc-RIB.
-.. clicmd:: neigbor A.B.C.D|X.X::X.X|peer-group route-map WORD import|export
+.. clicmd:: neigbor A.B.C.D|X.X::X.X|peer-group route-map WORD in|out
This set of commands can be used to specify the route-map that represents
the Import or Export policy of a peer which is configured as a RS-client
@@ -372,20 +372,20 @@ the policies for client RA):
address-family ipv6
neighbor 2001:0DB8::A activate
neighbor 2001:0DB8::A route-server-client
- neighbor 2001:0DB8::A route-map RSCLIENT-A-IMPORT import
- neighbor 2001:0DB8::A route-map RSCLIENT-A-EXPORT export
+ neighbor 2001:0DB8::A route-map RSCLIENT-A-IMPORT in
+ neighbor 2001:0DB8::A route-map RSCLIENT-A-EXPORT out
neighbor 2001:0DB8::A soft-reconfiguration inbound
neighbor 2001:0DB8::B activate
neighbor 2001:0DB8::B route-server-client
- neighbor 2001:0DB8::B route-map RSCLIENT-B-IMPORT import
- neighbor 2001:0DB8::B route-map RSCLIENT-B-EXPORT export
+ neighbor 2001:0DB8::B route-map RSCLIENT-B-IMPORT in
+ neighbor 2001:0DB8::B route-map RSCLIENT-B-EXPORT out
neighbor 2001:0DB8::B soft-reconfiguration inbound
neighbor 2001:0DB8::C activate
neighbor 2001:0DB8::C route-server-client
- neighbor 2001:0DB8::C route-map RSCLIENT-C-IMPORT import
- neighbor 2001:0DB8::C route-map RSCLIENT-C-EXPORT export
+ neighbor 2001:0DB8::C route-map RSCLIENT-C-IMPORT in
+ neighbor 2001:0DB8::C route-map RSCLIENT-C-EXPORT out
neighbor 2001:0DB8::C soft-reconfiguration inbound
exit-address-family
!
@@ -501,7 +501,7 @@ do it:
.. code-block:: frr
- neighbor 2001:0DB8::A route-map RSCLIENT-A-IMPORT import
+ neighbor 2001:0DB8::A route-map RSCLIENT-A-IMPORT in
...
!
...