diff options
| author | Jonathan Voss <jvoss@onvox.net> | 2025-01-03 03:19:30 +0000 |
|---|---|---|
| committer | Mergify <37929162+mergify[bot]@users.noreply.github.com> | 2025-01-04 11:53:53 +0000 |
| commit | 9937a926350b711a3a3f07297d03d56db28cec1c (patch) | |
| tree | c23ad31efa48a0589992816956c71c355377b420 | |
| parent | 50e6e7dd4247c88bb47e3c697a720b3c6d3725ec (diff) | |
tools: Add missing rpki keyword to vrf in frr-reload
When reloading the following configuration:
```
vrf red
rpki
rpki cache tcp 172.65.0.2 8282 preference 1
exit
exit-vrf
```
frr-reload.py does not properly enter the `rpki` context
within a `vrf`. Because of this, it fails to apply RPKI
configurations.
Signed-off-by: Jonathan Voss <jvoss@onvox.net>
(cherry picked from commit 975ee8ed6eb22f68538f3446b29ca34d65bec72f)
| -rwxr-xr-x | tools/frr-reload.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/frr-reload.py b/tools/frr-reload.py index 08a1f1e07e..00d6770c88 100755 --- a/tools/frr-reload.py +++ b/tools/frr-reload.py @@ -266,7 +266,7 @@ ctx_keywords = { "mpls ldp": {"address-family ": {"interface ": {}}}, "l2vpn ": {"member pseudowire ": {}}, "key chain ": {"key ": {}}, - "vrf ": {}, + "vrf ": {"rpki": {}}, "interface ": {"link-params": {}}, "pseudowire ": {}, "segment-routing": { |
