diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-08-01 09:49:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-01 09:49:10 +0200 |
commit | d4f25a76e3ffc79eb3322951f73f386d410458cb (patch) | |
tree | b75a88140a4c0fea48e933bb31c1f0771df1de81 /src | |
parent | c7338eebe9b759885bb4fa8580c787382b20e29f (diff) | |
parent | 472c95689fca0611e01a83d59e1d1e70c9d35fc7 (diff) | |
download | vyos-1x-d4f25a76e3ffc79eb3322951f73f386d410458cb.tar.gz vyos-1x-d4f25a76e3ffc79eb3322951f73f386d410458cb.zip |
Merge pull request #943 from Cheeze-It/current
isis: T3693: Adding IPv6 redistribution to ISIS
Diffstat (limited to 'src')
-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 |