diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-02-28 09:16:59 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-02-28 09:16:59 +0100 |
commit | d41e8e860a66f45d295081f024aa2918f221443f (patch) | |
tree | 46a96e5db3a4c932e888309852456694211ac018 /smoketest | |
parent | 9cf1651454895442d911e07120a2bfd9ae12a756 (diff) | |
download | vyos-1x-d41e8e860a66f45d295081f024aa2918f221443f.tar.gz vyos-1x-d41e8e860a66f45d295081f024aa2918f221443f.zip |
vxlan: T3369: add underlay IPv6 support
Diffstat (limited to 'smoketest')
-rwxr-xr-x | smoketest/scripts/cli/test_interfaces_vxlan.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/smoketest/scripts/cli/test_interfaces_vxlan.py b/smoketest/scripts/cli/test_interfaces_vxlan.py index fcc1b15ce..adbe7138b 100755 --- a/smoketest/scripts/cli/test_interfaces_vxlan.py +++ b/smoketest/scripts/cli/test_interfaces_vxlan.py @@ -27,8 +27,9 @@ class VXLANInterfaceTest(BasicInterfaceTest.BaseTest): cls._test_mtu = True cls._base_path = ['interfaces', 'vxlan'] cls._options = { - 'vxlan0': ['vni 10', 'remote 127.0.0.2'], - 'vxlan1': ['vni 20', 'group 239.1.1.1', 'source-interface eth0'], + 'vxlan10': ['vni 10', 'remote 127.0.0.2'], + 'vxlan20': ['vni 20', 'group 239.1.1.1', 'source-interface eth0'], + 'vxlan30': ['vni 30', 'remote 2001:db8:2000::1', 'source-address 2001:db8:1000::1'], } cls._interfaces = list(cls._options) |