summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@vyos.io>2024-03-04 15:04:14 +0100
committerGitHub <noreply@github.com>2024-03-04 15:04:14 +0100
commit2872f386b02c5e1c6df2c10f7c84e8478fd38c41 (patch)
treef80e883cd50f028d8fb5cb4af7671dd80aef9640 /src
parentde23c0e3b684e07d6b03d6796b77b382798bbab3 (diff)
parent6a97fdfa1ba9b4135a51498ea5acabb804256b2c (diff)
downloadvyos-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-xsrc/conf_mode/protocols_ospfv3.py2
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']):