Merge "pkt_gen: Spirent Testcenter RFC 2889 Support"
[vswitchperf.git] / conf / 02_vswitch.conf
1 # Copyright 2015-2016 Intel Corporation.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #   http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 # OVS Command timeout for execution of commands.
16 OVS_CMD_TIMEOUT = 10
17
18 # ############################
19 # DPDK configuration
20 # ############################
21
22 # DPDK target used when builing DPDK
23 RTE_TARGET = 'x86_64-native-linuxapp-gcc'
24
25 # list of NIC HWIDs to which traffic generator is connected
26 # In case of NIC with SRIOV suport, it is possible to define,
27 # which virtual function should be used
28 # e.g. value '0000:05:00.0|vf1' will configure two VFs and second VF
29 # will be used for testing
30 WHITELIST_NICS = ['0000:05:00.0', '0000:05:00.1']
31
32 # vhost character device file used by dpdkvhostport QemuWrap cases
33 VHOST_DEV_FILE = 'ovs-vhost-net'
34
35 # location of vhost-user sockets relative to 'ovs_var_tmp'
36 VHOST_USER_SOCKS = 'dpdkvhostuser*'
37
38 # please see conf/00_common.conf for description of PATHS dictionary
39 PATHS['dpdk'] = {
40         'type' : 'src',
41         'src': {
42             'path': os.path.join(ROOT_DIR, 'src/dpdk/dpdk/'),
43             # To use vfio set:
44             # 'modules' : ['uio', 'vfio-pci'],
45             'modules' : ['uio', os.path.join(RTE_TARGET, 'kmod/igb_uio.ko')],
46             'bind-tool': 'tools/dpdk*bind.py',
47             'testpmd': os.path.join(RTE_TARGET, 'app', 'testpmd'),
48         },
49         'bin': {
50             'bind-tool': '/usr/share/dpdk/tools/dpdk*bind.py',
51             'modules' : ['uio', 'igb_uio'],
52             'testpmd' : 'testpmd'
53         }
54     }
55
56 # ############################
57 # Directories
58 # ############################
59 VSWITCH_DIR = os.path.join(ROOT_DIR, 'vswitches')
60
61 # please see conf/00_common.conf for description of PATHS dictionary
62 # Every vswitch type supported by VSPERF must have its configuration
63 # stored inside PATHS['vswitch']. List of all supported vswitches
64 # can be obtained by call of ./vsperf --list-vswitches
65 #
66 # Directories defined by "ovs_var_tmp" and "ovs_etc_tmp" will be used
67 # by OVS to temporarily store its configuration, pid and socket files.
68 # In case, that these directories exist already, then their original
69 # content will be restored after the testcase execution.
70
71 PATHS['vswitch'] = {
72     'none' : {      # used by SRIOV tests
73         'type' : 'src',
74         'src' : {},
75     },
76     'OvsDpdkVhost': {
77         'type' : 'src',
78         'src': {
79             'path': os.path.join(ROOT_DIR, 'src/ovs/ovs/'),
80             'ovs-vswitchd': 'vswitchd/ovs-vswitchd',
81             'ovsdb-server': 'ovsdb/ovsdb-server',
82             'ovsdb-tool': 'ovsdb/ovsdb-tool',
83             'ovsschema': 'vswitchd/vswitch.ovsschema',
84             'ovs-vsctl': 'utilities/ovs-vsctl',
85             'ovs-ofctl': 'utilities/ovs-ofctl',
86             'ovs-dpctl': 'utilities/ovs-dpctl',
87             'ovs-appctl': 'utilities/ovs-appctl',
88         },
89         'bin': {
90             'ovs-vswitchd': 'ovs-vswitchd',
91             'ovsdb-server': 'ovsdb-server',
92             'ovsdb-tool': 'ovsdb-tool',
93             'ovsschema': '/usr/share/openvswitch/vswitch.ovsschema',
94             'ovs-vsctl': 'ovs-vsctl',
95             'ovs-ofctl': 'ovs-ofctl',
96             'ovs-dpctl': 'ovs-dpctl',
97             'ovs-appctl': 'ovs-appctl',
98         }
99     },
100     'ovs_var_tmp': '/usr/local/var/run/openvswitch/',
101     'ovs_etc_tmp': '/usr/local/etc/openvswitch/',
102 }
103
104 # default OvsVanilla configuration is similar to OvsDpdkVhost except 'path' and 'modules'
105 PATHS['vswitch'].update({'OvsVanilla' : copy.deepcopy(PATHS['vswitch']['OvsDpdkVhost'])})
106 PATHS['vswitch']['OvsVanilla']['src']['path'] = os.path.join(ROOT_DIR, 'src_vanilla/ovs/ovs/')
107 PATHS['vswitch']['OvsVanilla']['src']['modules'] = ['datapath/linux/openvswitch.ko']
108 PATHS['vswitch']['OvsVanilla']['bin']['modules'] = ['openvswitch']
109
110 # ############################
111 # vswitch configuration
112 # ############################
113 # These are DPDK EAL parameters and they may need to be changed depending on
114 # hardware configuration, like cpu numbering and NUMA.
115 #
116 # parameters used for legacy DPDK configuration through '--dpdk' option of ovs-vswitchd
117 # e.g. ovs-vswitchd --dpdk --socket-mem 1024,0
118 VSWITCHD_DPDK_ARGS = ['-c', '0x4', '-n', '4', '--socket-mem 1024,0']
119
120 # options used for new type of OVS configuration via calls to ovs-vsctl
121 # e.g. ovs-vsctl --no-wait set Open_vSwitch . other_config:dpdk-socket-mem="1024,0"
122 VSWITCHD_DPDK_CONFIG = {
123     'dpdk-init' : 'true',
124     'dpdk-lcore-mask' : '0x4',
125     'dpdk-socket-mem' : '1024,0',
126 }
127 # Note: VSPERF will automatically detect, which type of DPDK configuration should
128 # be used.
129
130 # To enable multi queue with dpdk modify the below param to the number of
131 # queues for dpdk. 0 = disabled
132 VSWITCH_DPDK_MULTI_QUEUES = 0
133
134 # Use old style OVS DPDK Multi-queue startup. If testing versions of OVS 2.5.0
135 # or before, enable this setting to allow DPDK Multi-queue to enable correctly.
136 OVS_OLD_STYLE_MQ = False
137
138 # parameters passed to ovs-vswitchd in case that OvsVanilla is selected
139 VSWITCHD_VANILLA_ARGS = []
140
141 # Bridge name to be used by VSWTICH
142 VSWITCH_BRIDGE_NAME = 'br0'
143
144 # directory where hugepages will be mounted on system init
145 HUGEPAGE_DIR = '/dev/hugepages'
146
147 # If no hugepages are available, try to allocate HUGEPAGE_RAM_ALLOCATION.
148 # Default is 10 GB.
149 # 10 GB (10485760 kB) or more is recommended for PVP & PVVP testing scenarios.
150 HUGEPAGE_RAM_ALLOCATION = 10485760
151
152 # Sets OVS PMDs core mask to 30 for affinitization to 5th and 6th CPU core.
153 # Note that the '0x' notation should not be used.
154 VSWITCH_PMD_CPU_MASK = '30'
155 VSWITCH_AFFINITIZATION_ON = 1
156
157 VSWITCH_FLOW_TIMEOUT = '30000'
158
159 # log file for ovs-vswitchd
160 LOG_FILE_VSWITCHD = 'vswitchd.log'
161
162 # log file for ovs-dpdk
163 LOG_FILE_OVS = 'ovs.log'
164
165 # default vswitch implementation
166 VSWITCH = "OvsDpdkVhost"