diff options
Diffstat (limited to 'conf')
-rw-r--r-- | conf/02_vswitch.conf | 8 | ||||
-rw-r--r-- | conf/03_traffic.conf | 23 |
2 files changed, 29 insertions, 2 deletions
diff --git a/conf/02_vswitch.conf b/conf/02_vswitch.conf index f9b8f957..2b74dae9 100644 --- a/conf/02_vswitch.conf +++ b/conf/02_vswitch.conf @@ -23,11 +23,15 @@ OVS_CMD_TIMEOUT = 10 RTE_TARGET = 'x86_64-native-linuxapp-gcc' # list of NIC HWIDs to which traffic generator is connected -# In case of NIC with SRIOV suport, it is possible to define, +# e.g. WHITELIST_NICS = ['05:00.0', '05:00.1'] +# NIC HWIDs for given network device name can be retrieved +# by call of ehtool: +# e.g. ethtool -i eth0 +# In case of NIC with SRIOV support, it is possible to define, # which virtual function should be used # e.g. value '0000:05:00.0|vf1' will configure two VFs and second VF # will be used for testing -WHITELIST_NICS = ['0000:05:00.0', '0000:05:00.1'] +WHITELIST_NICS = [] # vhost character device file used by dpdkvhostport QemuWrap cases VHOST_DEV_FILE = 'ovs-vhost-net' diff --git a/conf/03_traffic.conf b/conf/03_traffic.conf index d7327629..87210b8d 100644 --- a/conf/03_traffic.conf +++ b/conf/03_traffic.conf @@ -40,6 +40,29 @@ TRAFFICGEN_RFC2544_TESTS = 1 TRAFFICGEN_RFC2889_TRIALS = 1 TRAFFICGEN_LOSSRATE = 0.0 +############################## +# DUMMY Configuration -- BEGIN + +# By default, dummy traffic generator asks for "measured" values. +# Following dictionary allows to preconfigure these values and +# to avoid user interaction. It can be useful for automated +# integration tests. +# Example of values for continuous traffic type: +# TRAFFICGEN_DUMMY_RESULTS{'frames rx': 500000, +# 'frames tx': 500000, +# 'rx rate %': 100, +# 'tx rate %': 100, +# 'frameloss %': 0, +# 'min latency': 1, +# 'max latency': 15, +# 'avg latency': 2.5, +# } +# +TRAFFICGEN_DUMMY_RESULTS = {} + +# DUMMY Configuration -- END +############################ + ############################# # IXIA Configuration -- BEGIN |