diff options
| author | Carmine Scarpitta <cscarpit@cisco.com> | 2024-11-23 08:46:00 +0100 | 
|---|---|---|
| committer | Carmine Scarpitta <cscarpit@cisco.com> | 2024-11-23 08:55:55 +0100 | 
| commit | b4babae93b81be46c105e59c74b1708f00b68704 (patch) | |
| tree | 363d41f5944d656a32109abf99359830f126bb9f /tools | |
| parent | c84fd512ca9f882b13889f16f8affaef58f08071 (diff) | |
tools: Add missing keyword `segment-routing srv6` in frr-reload
Fix the error below:
```
[58564|mgmtd] sending configuration
[58565|zebra] sending configuration,
line 10: % Unknown command[52]:  node-msd
[58573|isisd] sending configuration
[58565|zebra] Configuration file[/etc/frr/frr.conf] processing failure: 2
```
Signed-off-by: Carmine Scarpitta <cscarpit@cisco.com>
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/frr-reload.py | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/frr-reload.py b/tools/frr-reload.py index 08a1f1e07e..baa6285f45 100755 --- a/tools/frr-reload.py +++ b/tools/frr-reload.py @@ -255,7 +255,9 @@ ctx_keywords = {      },      "router rip": {},      "router ripng": {}, -    "router isis ": {}, +    "router isis ": { +        "segment-routing srv6": {}, +    },      "router openfabric ": {},      "router ospf": {},      "router ospf6": {},  | 
