diff options
author | Christian Breunig <christian@breunig.cc> | 2024-03-03 21:31:46 +0100 |
---|---|---|
committer | Mergify <37929162+mergify[bot]@users.noreply.github.com> | 2024-03-04 14:05:42 +0000 |
commit | e2afe33855022d165445038b811075bae128c01a (patch) | |
tree | 92944b2c1cc9415956645ca52c4c33a8ea092743 /src | |
parent | 67573f503722e59e0aae1962f0c5551465d422a0 (diff) | |
download | vyos-1x-e2afe33855022d165445038b811075bae128c01a.tar.gz vyos-1x-e2afe33855022d165445038b811075bae128c01a.zip |
ospfv3: T6087: add support to redistribute IS-IS routes
(cherry picked from commit 6a97fdfa1ba9b4135a51498ea5acabb804256b2c)
Diffstat (limited to 'src')
-rwxr-xr-x | src/conf_mode/protocols_ospfv3.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_mode/protocols_ospfv3.py b/src/conf_mode/protocols_ospfv3.py index 2c1cbfecd..afd767dbf 100755 --- a/src/conf_mode/protocols_ospfv3.py +++ b/src/conf_mode/protocols_ospfv3.py @@ -85,7 +85,7 @@ def get_config(config=None): if 'graceful_restart' not in ospfv3: del default_values['graceful_restart'] - for protocol in ['babel', 'bgp', 'connected', 'kernel', 'ripng', 'static']: + for protocol in ['babel', 'bgp', 'connected', 'isis', 'kernel', 'ripng', 'static']: if dict_search(f'redistribute.{protocol}', ospfv3) is None: del default_values['redistribute'][protocol] if not bool(default_values['redistribute']): |