You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
583 B
23 lines
583 B
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (c) 2018 Petr Vorel <pvorel@suse.cz>
|
|
# Copyright (c) 2014-2015 Oracle and/or its affiliates. All Rights Reserved.
|
|
# Author: Alexey Kodanev <alexey.kodanev@oracle.com>
|
|
#
|
|
# Local test, check if we can create multiple VXLAN interfaces.
|
|
|
|
TST_OPTS="hi:d:"
|
|
TST_PARSE_ARGS=virt_lib_parse_args
|
|
TST_USAGE=virt_lib_usage
|
|
|
|
virt_type="vxlan"
|
|
start_id=16700000
|
|
|
|
TST_TEST_DATA="l2miss l3miss,norsc nolearning noproxy,\
|
|
ttl 0x01 tos 0x01,ttl 0xff tos 0xff,gbp"
|
|
TST_TEST_DATA_IFS=","
|
|
TST_TESTFUNC=virt_test_01
|
|
. virt_lib.sh
|
|
|
|
tst_run
|