summaryrefslogtreecommitdiff
path: root/smoketest/scripts/cli/test_interfaces_vxlan.py
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-02-28 09:16:59 +0100
committerChristian Poessinger <christian@poessinger.com>2021-02-28 09:16:59 +0100
commitd41e8e860a66f45d295081f024aa2918f221443f (patch)
tree46a96e5db3a4c932e888309852456694211ac018 /smoketest/scripts/cli/test_interfaces_vxlan.py
parent9cf1651454895442d911e07120a2bfd9ae12a756 (diff)
downloadvyos-1x-d41e8e860a66f45d295081f024aa2918f221443f.tar.gz
vyos-1x-d41e8e860a66f45d295081f024aa2918f221443f.zip
vxlan: T3369: add underlay IPv6 support
Diffstat (limited to 'smoketest/scripts/cli/test_interfaces_vxlan.py')
-rwxr-xr-xsmoketest/scripts/cli/test_interfaces_vxlan.py5
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)