diff options
author | Cheeze_It <none@none.com> | 2022-09-15 21:53:27 -0700 |
---|---|---|
committer | Cheeze_It <none@none.com> | 2022-09-18 12:21:49 -0700 |
commit | 6ce3b50be62a0e8a676419fc94bc49d7ecdbb2fa (patch) | |
tree | ae1533407a2679054f72008606b9d6a009e1aee1 /data/templates/frr/isisd.frr.j2 | |
parent | 7a2ad35ec8ecd84d162a3e5dc41b50f31d18dc10 (diff) | |
download | vyos-1x-6ce3b50be62a0e8a676419fc94bc49d7ecdbb2fa.tar.gz vyos-1x-6ce3b50be62a0e8a676419fc94bc49d7ecdbb2fa.zip |
Update protocols_isis.py
isis: T4693: Fix ISIS segment routing configurations
This change is to fix more bugs in which ISIS segment routing was broken due to a refactor. This change also introduces a few additions to the ISIS handler for checking per prefix validations for segment value and mutual exclusivity for two options.
Diffstat (limited to 'data/templates/frr/isisd.frr.j2')
-rw-r--r-- | data/templates/frr/isisd.frr.j2 | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/data/templates/frr/isisd.frr.j2 b/data/templates/frr/isisd.frr.j2 index 709484c98..e0f3b393e 100644 --- a/data/templates/frr/isisd.frr.j2 +++ b/data/templates/frr/isisd.frr.j2 @@ -127,8 +127,7 @@ router isis VyOS {{ 'vrf ' + vrf if vrf is vyos_defined }} segment-routing prefix {{ prefix }} absolute {{ prefix_config.absolute.value }} {% if prefix_config.absolute.explicit_null is vyos_defined %} segment-routing prefix {{ prefix }} absolute {{ prefix_config.absolute.value }} explicit-null -{% endif %} -{% if prefix_config.absolute.no_php_flag is vyos_defined %} +{% elif prefix_config.absolute.no_php_flag is vyos_defined %} segment-routing prefix {{ prefix }} absolute {{ prefix_config.absolute.value }} no-php-flag {% endif %} {% endif %} @@ -138,8 +137,7 @@ router isis VyOS {{ 'vrf ' + vrf if vrf is vyos_defined }} segment-routing prefix {{ prefix }} index {{ prefix_config.index.value }} {% if prefix_config.index.explicit_null is vyos_defined %} segment-routing prefix {{ prefix }} index {{ prefix_config.index.value }} explicit-null -{% endif %} -{% if prefix_config.index.no_php_flag is vyos_defined %} +{% elif prefix_config.index.no_php_flag is vyos_defined %} segment-routing prefix {{ prefix }} index {{ prefix_config.index.value }} no-php-flag {% endif %} {% endif %} |