diff options
author | Cheeze_It <none@none.com> | 2021-07-25 14:19:40 -0600 |
---|---|---|
committer | Cheeze_It <none@none.com> | 2021-07-31 20:13:02 -0600 |
commit | 472c95689fca0611e01a83d59e1d1e70c9d35fc7 (patch) | |
tree | 1babb28d2baefec2e2108e53396b8ebb4cd846ef /src/conf_mode | |
parent | 7273a6a0a05a000680ee549b76dd40762b73c2d0 (diff) | |
download | vyos-1x-472c95689fca0611e01a83d59e1d1e70c9d35fc7.tar.gz vyos-1x-472c95689fca0611e01a83d59e1d1e70c9d35fc7.zip |
isis: T3693: Adding IPv6 redistribution to ISIS
In this commit we add the ability to redistribute into
ISIS for IPv6 address family.
Diffstat (limited to 'src/conf_mode')
-rwxr-xr-x | src/conf_mode/protocols_isis.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_mode/protocols_isis.py b/src/conf_mode/protocols_isis.py index 50c48db28..254e62ec0 100755 --- a/src/conf_mode/protocols_isis.py +++ b/src/conf_mode/protocols_isis.py @@ -149,7 +149,7 @@ def verify(isis): # If Redistribute set, but level don't set if 'redistribute' in isis: proc_level = isis.get('level','').replace('-','_') - for afi in ['ipv4']: + for afi in ['ipv4', 'ipv6']: if afi not in isis['redistribute']: continue |