diff options
author | Neale Ranns <neale.ranns@cisco.com> | 2018-05-17 06:34:24 -0700 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2018-05-18 12:15:27 +0000 |
commit | 8f6dd328b2188eb15ad839b39cb31530758a4be1 (patch) | |
tree | bc889d0a658280f9c026637a532fa831b9c741a4 /test | |
parent | 1f6e9288536ee30db3911ccea1ea10af4b6b3e5e (diff) |
IP table bind allowed only if table exists
Change-Id: If01400e3434b25b2da36ba28ceb8444b216d0e38
Signed-off-by: Neale Ranns <neale.ranns@cisco.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/test_gbp.py | 2 | ||||
-rw-r--r-- | test/test_srv6.py | 8 |
2 files changed, 9 insertions, 1 deletions
diff --git a/test/test_gbp.py b/test/test_gbp.py index 3d9ebbc8f08..fe19ae6a27f 100644 --- a/test/test_gbp.py +++ b/test/test_gbp.py @@ -413,6 +413,8 @@ class TestGBP(VppTestCase): nat_table = VppIpTable(self, 20) nat_table.add_vpp_config() + nat_table = VppIpTable(self, 20, is_ip6=True) + nat_table.add_vpp_config() # # Bridge Domains diff --git a/test/test_srv6.py b/test/test_srv6.py index fda24b43a0e..b64d3bc8367 100644 --- a/test/test_srv6.py +++ b/test/test_srv6.py @@ -5,7 +5,7 @@ import binascii from socket import AF_INET6 from framework import VppTestCase, VppTestRunner -from vpp_ip_route import VppIpRoute, VppRoutePath, DpoProto +from vpp_ip_route import VppIpRoute, VppRoutePath, DpoProto, VppIpTable from vpp_srv6 import SRv6LocalSIDBehaviors, VppSRv6LocalSID, VppSRv6Policy, \ SRv6PolicyType, VppSRv6Steering, SRv6PolicySteeringTypes @@ -127,6 +127,8 @@ class TestSRv6(VppTestCase): self.logger.debug("Tear down interface %s" % (i.name)) i.admin_down() i.unconfig() + i.set_table_ip4(0) + i.set_table_ip6(0) @unittest.skipUnless(0, "PC to fix") def test_SRv6_T_Encaps(self): @@ -856,6 +858,8 @@ class TestSRv6(VppTestCase): # source interface in global FIB (0) # destination interfaces in global and vrf vrf_1 = 1 + ipt = VppIpTable(self, vrf_1, is_ip6=True) + ipt.add_vpp_config() self.setup_interfaces(ipv6=[True, True, True], ipv6_table_id=[0, 0, vrf_1]) @@ -1007,6 +1011,8 @@ class TestSRv6(VppTestCase): # source interface in global FIB (0) # destination interfaces in global and vrf vrf_1 = 1 + ipt = VppIpTable(self, vrf_1) + ipt.add_vpp_config() self.setup_interfaces(ipv6=[True, False, False], ipv4=[False, True, True], ipv6_table_id=[0, 0, 0], |