diff options
author | Louis Scalbert <louis.scalbert@6wind.com> | 2024-01-18 11:00:53 +0100 |
---|---|---|
committer | Louis Scalbert <louis.scalbert@6wind.com> | 2024-01-18 13:23:39 +0100 |
commit | aca422dec5820fc47cd89ab7ab2f5702dc75bf12 (patch) | |
tree | d19512f2991e4c8b1b090353e3e3f42cba928c7d /doc | |
parent | bgpd: add vrf name to some rpki logs (diff) | |
download | frr-aca422dec5820fc47cd89ab7ab2f5702dc75bf12.tar.xz frr-aca422dec5820fc47cd89ab7ab2f5702dc75bf12.zip |
doc: use documentation range in rpki manual
Use documentation range in rpki manual
Signed-off-by: Louis Scalbert <louis.scalbert@6wind.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/user/rpki.rst | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/user/rpki.rst b/doc/user/rpki.rst index 06fb3c2f2..196c6b06e 100644 --- a/doc/user/rpki.rst +++ b/doc/user/rpki.rst @@ -166,7 +166,7 @@ Validating BGP Updates .. code-block:: frr ! Allow for invalid routes in route selection process - route bgp 60001 + route bgp 65001 ! ! Set local preference of invalid prefixes to 10 route-map rpki permit 10 @@ -252,21 +252,21 @@ RPKI Configuration Example rpki polling_period 1000 rpki timeout 10 ! SSH Example: - rpki cache example.com source 141.22.28.223 22 rtr-ssh ./ssh_key/id_rsa ./ssh_key/id_rsa.pub preference 1 + rpki cache example.com source 198.51.100.223 22 rtr-ssh ./ssh_key/id_rsa ./ssh_key/id_rsa.pub preference 1 ! TCP Example: rpki cache rpki-validator.realmv6.org 8282 preference 2 exit ! - router bgp 60001 - bgp router-id 141.22.28.223 - network 192.168.0.0/16 - neighbor 123.123.123.0 remote-as 60002 - neighbor 123.123.123.0 route-map rpki in - neighbor 123.123.123.0 update-source 141.22.28.223 + router bgp 65001 + bgp router-id 198.51.100.223 + network 192.0.2.0/24 + neighbor 203.0.113.1 remote-as 65002 + neighbor 203.0.113.1 route-map rpki in + neighbor 203.0.113.1 update-source 198.51.100.223 ! address-family ipv6 - neighbor 123.123.123.0 activate - neighbor 123.123.123.0 route-map rpki in + neighbor 203.0.113.1 activate + neighbor 203.0.113.1 route-map rpki in exit-address-family ! route-map rpki permit 10 |