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:54:08 +0000 |
| commit | 45a24ef6744403093ca822e2fb61bf5a79c46b3d (patch) | |
| tree | dc7f3ecb3c7b2d77903cb4a3754185f34ac0950c /tools/frr-reload.py | |
| parent | ae3d2f08de7b62d51eca1f1a7fef8f8c1305fac3 (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)
Diffstat (limited to 'tools/frr-reload.py')
| -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 b06f1df624..e14f8613a8 100755 --- a/tools/frr-reload.py +++ b/tools/frr-reload.py @@ -264,7 +264,7 @@ ctx_keywords = { "mpls ldp": {"address-family ": {"interface ": {}}}, "l2vpn ": {"member pseudowire ": {}}, "key chain ": {"key ": {}}, - "vrf ": {}, + "vrf ": {"rpki": {}}, "interface ": {"link-params": {}}, "pseudowire ": {}, "segment-routing": { |
