diff options
author | Daniil Baturin <daniil@vyos.io> | 2025-04-22 15:47:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-22 15:47:25 +0100 |
commit | 35e3a3722b5f420384e6d4a3fbf140210815f65c (patch) | |
tree | 22616787ae047886b14f18c2761899c94bd94279 /python | |
parent | 427ebbb1e103ff45774bdf79bd5b1cddeff2f686 (diff) | |
parent | c984fe04a3ce46c266e0b1854af906d5b317f397 (diff) | |
download | vyos-1x-35e3a3722b5f420384e6d4a3fbf140210815f65c.tar.gz vyos-1x-35e3a3722b5f420384e6d4a3fbf140210815f65c.zip |
Merge pull request #4466 from aapostoliuk/T7383-rolling
ospf: T7383: Fixed unconfigured redistribution of nhrp into ospf
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/frrender.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/vyos/frrender.py b/python/vyos/frrender.py index 8d469e3e2..524167d8b 100644 --- a/python/vyos/frrender.py +++ b/python/vyos/frrender.py @@ -92,7 +92,7 @@ def get_frrender_dict(conf, argv=None) -> dict: if dict_search(f'area.{area_num}.area_type.nssa', ospf) is None: del default_values['area'][area_num]['area_type']['nssa'] - for protocol in ['babel', 'bgp', 'connected', 'isis', 'kernel', 'rip', 'static']: + for protocol in ['babel', 'bgp', 'connected', 'isis', 'kernel', 'nhrp', 'rip', 'static']: if dict_search(f'redistribute.{protocol}', ospf) is None: del default_values['redistribute'][protocol] if not bool(default_values['redistribute']): |