diff options
author | Daniil Baturin <daniil@vyos.io> | 2024-03-04 15:04:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-04 15:04:14 +0100 |
commit | 2872f386b02c5e1c6df2c10f7c84e8478fd38c41 (patch) | |
tree | f80e883cd50f028d8fb5cb4af7671dd80aef9640 /src | |
parent | de23c0e3b684e07d6b03d6796b77b382798bbab3 (diff) | |
parent | 6a97fdfa1ba9b4135a51498ea5acabb804256b2c (diff) | |
download | vyos-1x-2872f386b02c5e1c6df2c10f7c84e8478fd38c41.tar.gz vyos-1x-2872f386b02c5e1c6df2c10f7c84e8478fd38c41.zip |
Merge pull request #3078 from c-po/ospfv3-isis-T6087
ospfv3: T6087: add support to redistribute IS-IS routes
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']): |