diff options
author | Christian Breunig <christian@breunig.cc> | 2024-03-03 21:31:46 +0100 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2024-03-03 21:31:46 +0100 |
commit | 6a97fdfa1ba9b4135a51498ea5acabb804256b2c (patch) | |
tree | 09aa59ac6e2f33dc5142a3e628e15c39a358c607 /src/conf_mode/protocols_ospfv3.py | |
parent | 256e939b2cd308e1e8be9dd72ccec6e87d58504b (diff) | |
download | vyos-1x-6a97fdfa1ba9b4135a51498ea5acabb804256b2c.tar.gz vyos-1x-6a97fdfa1ba9b4135a51498ea5acabb804256b2c.zip |
ospfv3: T6087: add support to redistribute IS-IS routes
Diffstat (limited to 'src/conf_mode/protocols_ospfv3.py')
-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']): |