diff options
author | sever-sever <v.gletenko@vyos.io> | 2021-02-22 14:46:23 +0000 |
---|---|---|
committer | sever-sever <v.gletenko@vyos.io> | 2021-02-23 16:25:53 +0000 |
commit | 75dc3f62a0e9fcb8d1bd9b732e4cd126ff751abb (patch) | |
tree | 769c7afad52aaeaa1f4bf56bc37d2b01d953c83a /smoketest/scripts/cli/test_protocols_ospf.py | |
parent | cf1156a60e1d03a752cde0baadbc9ac8118b2a52 (diff) | |
download | vyos-1x-75dc3f62a0e9fcb8d1bd9b732e4cd126ff751abb.tar.gz vyos-1x-75dc3f62a0e9fcb8d1bd9b732e4cd126ff751abb.zip |
routing: T3211: Add redistribute protocol IS-IS to bgp ospf rip
Diffstat (limited to 'smoketest/scripts/cli/test_protocols_ospf.py')
-rwxr-xr-x | smoketest/scripts/cli/test_protocols_ospf.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/smoketest/scripts/cli/test_protocols_ospf.py b/smoketest/scripts/cli/test_protocols_ospf.py index ce30f6a7d..0ca8bb3bd 100755 --- a/smoketest/scripts/cli/test_protocols_ospf.py +++ b/smoketest/scripts/cli/test_protocols_ospf.py @@ -88,7 +88,7 @@ class TestProtocolsOSPF(unittest.TestCase): def test_ospf_03_access_list(self): acl = '100' seq = '10' - protocols = ['bgp', 'connected', 'kernel', 'rip', 'static'] + protocols = ['bgp', 'connected', 'isis', 'kernel', 'rip', 'static'] self.session.set(['policy', 'access-list', acl, 'rule', seq, 'action', 'permit']) self.session.set(['policy', 'access-list', acl, 'rule', seq, 'source', 'any']) @@ -215,7 +215,7 @@ class TestProtocolsOSPF(unittest.TestCase): def test_ospf_08_redistribute(self): metric = '15' metric_type = '1' - redistribute = ['bgp', 'connected', 'kernel', 'rip', 'static'] + redistribute = ['bgp', 'connected', 'isis', 'kernel', 'rip', 'static'] for protocol in redistribute: self.session.set(base_path + ['redistribute', protocol, 'metric', metric]) |