diff options
author | Christian Breunig <christian@breunig.cc> | 2024-02-14 21:07:36 +0100 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2024-02-14 21:07:36 +0100 |
commit | 354603398b693af06695d5d1a7602f17079f8350 (patch) | |
tree | 538fff2e227d93b4a3887770bd0d540397eb4088 /smoketest/configs/rpki-only | |
parent | 0eb4168aaec0ab3416d8b02eaa1be721b96ee7a8 (diff) | |
download | vyos-1x-354603398b693af06695d5d1a7602f17079f8350.tar.gz vyos-1x-354603398b693af06695d5d1a7602f17079f8350.zip |
rpki: T6034: extend config migration testcase
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 |