diff options
author | Amit Cohen <amcohen@nvidia.com> | 2021-12-23 10:29:58 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-12-23 14:24:01 +0300 |
commit | 1c7b183dac8917f6329cc809ac61cdf9d3ce9f3f (patch) | |
tree | 8b806cc715430001f588a6124718892b89a72631 /tools/testing/selftests/drivers | |
parent | 696285305b32f4fc1ddfb2d158ef4bbb6085ab92 (diff) | |
download | linux-1c7b183dac8917f6329cc809ac61cdf9d3ce9f3f.tar.xz |
selftests: mlxsw: Add VxLAN FDB veto test for IPv6
Add test to verify FDB vetos of VxLAN with IPv6 underlay.
Use the existing test which checks IPv4.
Signed-off-by: Amit Cohen <amcohen@nvidia.com>
Reviewed-by: Petr Machata <petrm@nvidia.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'tools/testing/selftests/drivers')
-rwxr-xr-x | tools/testing/selftests/drivers/net/mlxsw/vxlan_fdb_veto_ipv6.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tools/testing/selftests/drivers/net/mlxsw/vxlan_fdb_veto_ipv6.sh b/tools/testing/selftests/drivers/net/mlxsw/vxlan_fdb_veto_ipv6.sh new file mode 100755 index 000000000000..66c87aab86f6 --- /dev/null +++ b/tools/testing/selftests/drivers/net/mlxsw/vxlan_fdb_veto_ipv6.sh @@ -0,0 +1,12 @@ +#!/bin/bash +# SPDX-License-Identifier: GPL-2.0 + +# A wrapper to run VXLAN test for IPv6. + +LOCAL_IP=2001:db8:1::1 +REMOTE_IP_1=2001:db8:2::1 +REMOTE_IP_2=2001:db8:3::1 +UDPCSUM_FLAFS="udp6zerocsumrx udp6zerocsumtx" +MC_IP=FF02::2 + +source vxlan_fdb_veto.sh |