summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2024-03-04 18:44:34 +0100
committerGitHub <noreply@github.com>2024-03-04 18:44:34 +0100
commitbd0f7537e74b4fe99796ceb5352ea573fde348da (patch)
tree407660df180049c7a15c814a6de9c11fcb266f08 /src
parent0eb1b68f9edd701a88f9466b84577806f79fe703 (diff)
parente2afe33855022d165445038b811075bae128c01a (diff)
downloadvyos-1x-bd0f7537e74b4fe99796ceb5352ea573fde348da.tar.gz
vyos-1x-bd0f7537e74b4fe99796ceb5352ea573fde348da.zip
Merge pull request #3083 from vyos/mergify/bp/sagitta/pr-3078
ospfv3: T6087: add support to redistribute IS-IS routes (backport #3078)
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']):