summaryrefslogtreecommitdiff
path: root/src/conf_mode/protocols_ospf.py
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2023-03-21 20:53:16 +0100
committerChristian Breunig <christian@breunig.cc>2023-03-21 20:53:55 +0100
commit306e422d8306f3e4c35779bf93177c1fb56a4b61 (patch)
tree0417e4028f7ca279a0968a6447e932b7a0f291bb /src/conf_mode/protocols_ospf.py
parent4e627d57290c85f15779ca0246aebbaa2d5c3d5f (diff)
downloadvyos-1x-306e422d8306f3e4c35779bf93177c1fb56a4b61.tar.gz
vyos-1x-306e422d8306f3e4c35779bf93177c1fb56a4b61.zip
ospf: T5102: do not always redistribute babel routes
Diffstat (limited to 'src/conf_mode/protocols_ospf.py')
-rwxr-xr-xsrc/conf_mode/protocols_ospf.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/conf_mode/protocols_ospf.py b/src/conf_mode/protocols_ospf.py
index 0582d32be..eb64afa0c 100755
--- a/src/conf_mode/protocols_ospf.py
+++ b/src/conf_mode/protocols_ospf.py
@@ -89,7 +89,7 @@ def get_config(config=None):
if 'mpls_te' not in ospf:
del default_values['mpls_te']
- for protocol in ['bgp', 'connected', 'isis', 'kernel', 'rip', 'static', 'table']:
+ for protocol in ['babel', 'bgp', 'connected', 'isis', 'kernel', 'rip', 'static', 'table']:
# table is a tagNode thus we need to clean out all occurances for the
# default values and load them in later individually
if protocol == 'table':
@@ -234,7 +234,7 @@ def verify(ospf):
if list(set(global_range) & set(local_range)):
raise ConfigError(f'Segment-Routing Global Block ({g_low_label_value}/{g_high_label_value}) '\
f'conflicts with Local Block ({l_low_label_value}/{l_high_label_value})!')
-
+
# Check for a blank or invalid value per prefix
if dict_search('segment_routing.prefix', ospf):
for prefix, prefix_config in ospf['segment_routing']['prefix'].items():