diff options
| author | Carmine Scarpitta <cscarpit@cisco.com> | 2024-11-23 08:46:50 +0100 |
|---|---|---|
| committer | Carmine Scarpitta <cscarpit@cisco.com> | 2024-11-23 08:56:05 +0100 |
| commit | 458e8a851608b8308b564e6cbfe95314629dccda (patch) | |
| tree | 43714439a34387f9cf2c7b16d5d0ea377c19cda1 /tools | |
| parent | b4babae93b81be46c105e59c74b1708f00b68704 (diff) | |
tools: Add missing keyword `node-msd` in frr-reload
Fix the error below:
```
[58564|mgmtd] sending configuration
[58565|zebra] sending configuration,
line 14: % Unknown command[52]: max-segs-left 3
line 18: % Unknown command[52]: max-end-pop 3
line 22: % Unknown command[52]: max-h-encaps 2
line 26: % Unknown command[52]: max-end-d 5
[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 baa6285f45..33d6cf0444 100755 --- a/tools/frr-reload.py +++ b/tools/frr-reload.py @@ -256,7 +256,9 @@ ctx_keywords = { "router rip": {}, "router ripng": {}, "router isis ": { - "segment-routing srv6": {}, + "segment-routing srv6": { + "node-msd": {}, + }, }, "router openfabric ": {}, "router ospf": {}, |
