diff options
| author | Jonathan Voss <jvoss@onvox.net> | 2025-01-03 03:19:30 +0000 |
|---|---|---|
| committer | Jonathan Voss <jvoss@onvox.net> | 2025-01-03 03:31:57 +0000 |
| commit | 975ee8ed6eb22f68538f3446b29ca34d65bec72f (patch) | |
| tree | 1984f506425ace6fea18c5750ec5b9652aaeeeba /tools/frr-reload.py | |
| parent | 352b97ff00c6aad2b19ceba8f631ea5adba3a2d8 (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>
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 2ea63a290e..dba50b3c53 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": { |
