diff options
author | Christian Breunig <christian@breunig.cc> | 2024-02-14 21:07:36 +0100 |
---|---|---|
committer | Mergify <37929162+mergify[bot]@users.noreply.github.com> | 2024-02-15 15:21:31 +0000 |
commit | 506f4b87951f91833cc43562bca2efa1ed9d2bd7 (patch) | |
tree | cd037790007081d444b0ada93e5a1db55f587c7f /smoketest/configs/rpki-only | |
parent | eb079e4a49150934dec082861176f5a5213c1206 (diff) | |
download | vyos-1x-506f4b87951f91833cc43562bca2efa1ed9d2bd7.tar.gz vyos-1x-506f4b87951f91833cc43562bca2efa1ed9d2bd7.zip |
rpki: T6034: extend config migration testcase
(cherry picked from commit 354603398b693af06695d5d1a7602f17079f8350)
Diffstat (limited to 'smoketest/configs/rpki-only')
-rw-r--r-- | smoketest/configs/rpki-only | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/smoketest/configs/rpki-only b/smoketest/configs/rpki-only index 0f89b9a1b..98e9892ad 100644 --- a/smoketest/configs/rpki-only +++ b/smoketest/configs/rpki-only @@ -3,11 +3,62 @@ interfaces { duplex auto speed auto address 192.0.2.1/24 + address 2001:db8::1/64 } loopback lo { } } +policy { + route-map ROUTES-IN { + rule 10 { + action permit + match { + rpki valid + } + set { + local-preference 300 + } + } + rule 20 { + action permit + match { + rpki notfound + } + set { + local-preference 125 + } + } + rule 30 { + action deny + match { + rpki invalid + } + } + } +} protocols { + bgp 100 { + neighbor 192.0.2.200 { + address-family { + ipv4-unicast { + route-map { + import ROUTES-IN + } + } + } + remote-as 200 + } + neighbor 2001:db8::200 { + address-family { + ipv6-unicast { + route-map { + import ROUTES-IN + } + } + } + remote-as 200 + } + } rpki { cache 1.2.3.4 { port 3323 |