summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-03-04 21:47:46 +0100
committerGitHub <noreply@github.com>2021-03-04 21:47:46 +0100
commitecba3ff3a5d5032da735e0f73983b85918560570 (patch)
treea077756cca1f6941dc76e3670dbf2038fac88488
parentd170b84821d55355b7b5b0484a5cd55b5c145e14 (diff)
parent8afb5faf4c87e5cf7d1853df7b7b89c168c2e11c (diff)
downloadvyos-1x-ecba3ff3a5d5032da735e0f73983b85918560570.tar.gz
vyos-1x-ecba3ff3a5d5032da735e0f73983b85918560570.zip
Merge pull request #761 from sever-sever/T3211
ospf: T3211: Fix default isis redistribution
-rwxr-xr-xsrc/conf_mode/protocols_ospf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_mode/protocols_ospf.py b/src/conf_mode/protocols_ospf.py
index 6d9eb828b..aefe7c23e 100755
--- a/src/conf_mode/protocols_ospf.py
+++ b/src/conf_mode/protocols_ospf.py
@@ -60,7 +60,7 @@ def get_config(config=None):
del default_values['area']['area_type']['nssa']
if 'mpls_te' not in ospf:
del default_values['mpls_te']
- for protocol in ['bgp', 'connected', 'kernel', 'rip', 'static']:
+ for protocol in ['bgp', 'connected', 'isis', 'kernel', 'rip', 'static']:
if dict_search(f'redistribute.{protocol}', ospf) is None:
del default_values['redistribute'][protocol]
# XXX: T2665: we currently have no nice way for defaults under tag nodes,