diff options
author | Jonathan Voss <jvoss@onvox.net> | 2025-01-03 04:19:30 +0100 |
---|---|---|
committer | Jonathan Voss <jvoss@onvox.net> | 2025-01-03 04:31:57 +0100 |
commit | 975ee8ed6eb22f68538f3446b29ca34d65bec72f (patch) | |
tree | 1984f506425ace6fea18c5750ec5b9652aaeeeba /tools | |
parent | Merge pull request #17726 from guoguojia2021/static_fix (diff) | |
download | frr-975ee8ed6eb22f68538f3446b29ca34d65bec72f.tar.xz frr-975ee8ed6eb22f68538f3446b29ca34d65bec72f.zip |
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>
Diffstat (limited to 'tools')
-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 2ea63a290..dba50b3c5 100755 --- a/tools/frr-reload.py +++ b/tools/frr-reload.py @@ -270,7 +270,7 @@ ctx_keywords = { "mpls ldp": {"address-family ": {"interface ": {}}}, "l2vpn ": {"member pseudowire ": {}}, "key chain ": {"key ": {}}, - "vrf ": {}, + "vrf ": {"rpki": {}}, "interface ": {"link-params": {}}, "pseudowire ": {}, "segment-routing": { |