NFVBENCH-155 Add options to disable extra stats, latency stats and latency streams
[nfvbench.git] / nfvbench / cfg.default.yaml
1 #
2 # NFVbench default configuration file
3 #
4 # This configuration file is ALWAYS loaded by NFVbench and should never be modified by users.
5 # To specify your own property values, always define them in a separate config file
6 # and pass that file to the script using -c or --config <file>
7 # Property values in that config file will override the default values in the current file
8 #
9 ---
10 # IMPORTANT CUSTOMIZATION NOTES
11 # There are roughly 2 types of NFVbench config based on the OpenStack encaps used:
12 # - VLAN (OVS, OVS-DPDK, ML2/VPP)
13 # Many of the fields to customize are relevant to only 1 of the 2 encaps
14 # These will be clearly labeled "VxLAN only" or "VLAN only"
15 # Fields that are not applicable will not be used by NFVbench and can be left empty
16 #
17 # All fields are applicable to all encaps/traffic generators unless explicitly marked otherwise.
18 # Fields that can be over-ridden at the command line are marked with the corresponding
19 # option, e.g. "--interval"
20
21
22 # The OpenStack openrc file to use - must be a valid full pathname. If running
23 # in a container, this path must be valid in the container.
24 #
25 # The only case where this field can be empty is when measuring a system that does not run
26 # OpenStack or when OpenStack APIs are not accessible or OpenStack APis use is not
27 # desirable. In that case the EXT service chain must be used.
28 #
29 # If openrc is not admin some parameters are mandatory and must be filled with valid values in config file such as :
30 # - availability_zone
31 # - hypervisor_hostname
32 # - vlans
33 openrc_file:
34
35 # Forwarder to use in nfvbenchvm image. Available options: ['vpp', 'testpmd']
36 vm_forwarder: testpmd
37
38 # By default (empty) NFVbench will try to locate a VM image file
39 # from the package root directory named "nfvbench-<version>.qcow2" and
40 # upload that file. The image name will be "nfvbench-<version>"
41 # This can be overridden by specifying here a pathname of a file
42 # that follows the same naming convention.
43 # In most cases, this field should be left empty as the packaging should
44 # include the proper VM image file
45 vm_image_file:
46
47 # Name of the flavor to use for the loopback VMs
48 #
49 # If the provided name is an exact match to a flavor name known by OpenStack
50 # (as shown from 'nova flavor-list'), that flavor will be reused.
51 # Otherwise, a new flavor will be created with attributes listed below.
52 flavor_type: 'nfvbench.medium'
53
54 # Custom flavor attributes for the test VM
55 flavor:
56   # Number of vCPUs for the flavor, must be at least 2!
57   vcpus: 2
58   # Memory for the flavor in MB
59   ram: 4096
60   # Size of local disk in GB
61   disk: 0
62   # metadata are supported and can be added if needed, optional
63   # note that if your openstack does not have NUMA optimization
64   # (cpu pinning and huge pages)
65   # you must comment out extra_specs completely otherwise
66   # loopback VM creation will fail
67   extra_specs:
68       "hw:cpu_policy": dedicated
69       "hw:mem_page_size": large
70
71 # Enable multiqueue for all test VM interfaces (PVP and PVVP only).
72 # When enabled, the test VM image will get added the property to enable
73 # multiqueue (hw_vif_multiqueue_enabled='true').
74 # The number of queues per interace will be set to the number of vCPUs configured for
75 # the VM.
76 # By default there is only 1 queue per interface
77 # The max allowed queue per interface is 8.
78 # The valid range for this parameter is [1..min(8, vcpu_count)]
79 # When multiqueue is used the recommended setting is to set it to same value as the
80 # number of vCPU used - up to a max of 8 queues.
81 # Setting to a lower value than vCPU should also work. For example if using 4 vCPU and
82 # vif_multiqueue_size is set to 2, openstack will create 4 queues per interface but the
83 # test VM will only use the first 2 queues.
84 vif_multiqueue_size: 1
85
86 # Increase number of buffers allocated for VPP VM forwarder. May be needed in scenarios with large
87 # number of interfaces and worker threads, or a lot of physical interfaces with multiple RSS queues.
88 # Value is per CPU socket. Default is 16384.
89 num_mbufs: 16384
90
91 # Name of the availability zone to use for the test VMs
92 # Must be one of the zones listed by 'nova availability-zone-list'
93 # availability_zone: 'nova'
94 # If openrc is not admin set a valid value
95 availability_zone:
96 # To force placement on a given hypervisor, set the name here
97 # (if multiple names are provided, the first will be used)
98 # Leave empty to let openstack pick the hypervisor
99 compute_nodes:
100 # If openrc is not admin set a valid value for hypervisor hostname
101 # Example of value: hypervisor_hostname: "server1"
102 hypervisor_hostname:
103
104 # Type of service chain to run, possible options are PVP, PVVP and EXT
105 # PVP - port to VM to port
106 # PVVP - port to VM to VM to port
107 # EXT - external chain used only for running traffic and checking traffic generator counters,
108 #       all other parts of chain must be configured manually
109 # Can be overriden by --service-chain
110 service_chain: 'PVP'
111
112 # Total number of service chains, every chain has own traffic stream
113 # Can be overriden by --service-chain-count
114 service_chain_count: 1
115
116 # Specifies if all chains share the same right/left/middle networks
117 service_chain_shared_net: false
118
119 # Total number of traffic flows for all chains and directions generated by the traffic generator.
120 # Minimum is '2 * service_chain_count', it is automatically adjusted if too small
121 # value was configured. Must be even.
122 # Every flow has packets with different IPs in headers
123 # Can be overriden by --flow-count
124 flow_count: 10000
125
126 # set to true if service chains should use SRIOV
127 # This requires SRIOV to be available on compute nodes
128 sriov: false
129
130 # Perform port to port loopback (direct or through switch)
131 # Should be used with EXT service chain and no ARP (no_arp: true)
132 # When enabled, the vlans property must contain the same VLAN id for all chains.
133 # Can be overriden by --l2-loopback
134 l2_loopback: false
135
136 # Resources created by NFVbench will not be removed
137 # Can be overriden by --no-cleanup
138 no_cleanup: false
139
140 # Configuration for traffic generator
141 traffic_generator:
142     # Name of the traffic generator, only for informational purposes
143     host_name: 'nfvbench_tg'
144     # this is the default traffic generator profile to use
145     # the name must be defined under generator_profile
146     # you can override the traffic generator to use using the
147     # -g or --traffic-gen option at the command line
148     default_profile: trex-local
149
150     # IP addresses for L3 traffic.
151     # This section describes the addresses to use to fill in the UDP packets sent by the
152     # traffic generator. If you VNFs are L2 forwarders, these fields below do not need to change.
153     # If your VNFs are L3 routers, the fields below must match the static routes in your VNFs
154     # so that UDP packets can be routed back to the peer port of the traffic generator.
155
156     # All of the IPs are used as base for IP sequence computed based on chain or flow count.
157     # (sim-devices-left)---(tg-gateway-left)---(vnf-left)- ...
158     #                                      -(vnf-right)---(tg-gateway-right)---(sim-devices-right)
159     #
160     # `ip_addrs` base IPs used as src and dst in packet header, quantity depends on flow count
161     #            these are used for addressing virtual devices simulated by the traffic generator
162     #            and be a different subnet than tg_gateway_ip_addrs and gateway_ip_addrs
163     # `ip_addrs_step`: step for generating IP sequence. Use "random" for random patterns, default is 0.0.0.1.
164     ip_addrs: ['10.0.0.0/8', '20.0.0.0/8']
165     ip_addrs_step: 0.0.0.1
166     # `tg_gateway_ip_addrs` base IP for traffic generator ports in the left and right networks to the VNFs
167     #                       chain count consecutive IP addresses spaced by tg_gateway_ip_addrs_step will be used
168     # `tg_gateway_ip_addrs__step`: step for generating traffic generator gateway sequences. default is 0.0.0.1
169     tg_gateway_ip_addrs: ['1.1.0.100', '2.2.0.100']
170     tg_gateway_ip_cidrs: ['1.1.0.0/24','2.2.0.0/24']
171     tg_gateway_ip_addrs_step: 0.0.0.1
172     # `gateway_ip_addrs`: base IPs of VNF router gateways (left and right), quantity used depends on chain count
173     #                     must correspond to the public IP on the left and right networks
174     #                     for each left-most and right-most VNF of every chain.
175     #                     must be the same subnet but not same IP as tg_gateway_ip_addrs.
176     #                     chain count consecutive IP addresses spaced by gateway_ip_addrs_step will be used
177     # `gateway_ip_addrs_step`: step for generating router gateway sequences. default is 0.0.0.1
178     gateway_ip_addrs: ['1.1.0.2', '2.2.0.2']
179     gateway_ip_addrs_step: 0.0.0.1
180     # `udp_src_port`: the source port for sending UDP traffic, default is picked by TRex (53)
181     # `udp_dst_port`: the destination port for sending UDP traffic, default is picked by TRex (53)
182     udp_src_port:
183     udp_dst_port:
184
185     # VxLAN only: optionally specify what VLAN tag to use for the VxLAN overlay
186     # This is used if the vxlan tunnels are running on a specific VLAN.
187     # Leave empty if there is no VLAN tagging required, or specify the VLAN id to use
188     # for all VxLAN tunneled traffic
189     vtep_vlan:
190     # VxLAN only: local/source vteps IP addresses for port 0 and 1 ['10.1.1.230', '10.1.1.231']
191     src_vteps:
192     # VxLAN only: remote IP address of the remote VTEPs that terminate all tunnels originating from local VTEPs
193     dst_vtep:
194
195     # L2 ADDRESSING OF UDP PACKETS
196     # Lists of dest MAC addresses to use on each traffic generator port (one dest MAC per chain)
197     # Leave empty for PVP, PVVP, EXT with ARP
198     # Only used when `service_chain` is EXT and `no_arp` is true.
199     #   - If both lists are empty the far end MAC of the traffic generator will be used for left and right
200     #     (this is typicaly used to loop back on the first hop switch or using a loopback cable)
201     #   - The length of each list must match the number of chains being used!
202     #   - The index of each list must correspond to the chain index to ensure proper pairing.
203     #   - Below is an example of using two chains:
204     #     - mac_addrs_left: ['00:00:00:00:01:00', '00:00:00:00:02:00']
205     #     - mac_addrs_right: ['00:00:00:00:01:01', '00:00:00:00:02:01']
206     #     UDP packets sent on port 0 will use dest MAC '00:00:00:00:01:00' for chain #0 and
207     #                                         dest MAC '00:00:00:00:02:00' for chain #1
208     #     UDP packets sent on port 1 will use dest MAC '00:00:00:00:01:01' for chain #0 and
209     #                                         dest MAC '00:00:00:00:02:01' for chain #1
210     #     It is expected that the looping device (L2 forwarder) will rewrite the src and dst MAC
211     #     of the looping UDP packet so that it can reach back to the peer port of the traffic
212     #     generator.
213     #
214     mac_addrs_left:
215     mac_addrs_right:
216
217     # Traffic Generator Profiles
218     # In case you have multiple testbeds or traffic generators,
219     # you can define one traffic generator profile per testbed/traffic generator.
220     # In most cases you only need to fill in the pci address for the 2 ports used by the
221     # traffic generator and leave all other fields unchanged
222     #
223     # Generator profiles are listed in the following format:
224     # `name`: Traffic generator profile name (use a unique name, no space or special character)
225     #         Do not change this field
226     # `tool`: Traffic generator tool to be used (currently supported is `TRex`).
227     #         Do not change this field
228     # `ip`: IP address of the traffic generator.
229     #       The default loopback address is used when the traffic generator runs on the same host
230     #       as NFVbench.
231     # `cores`: Specify the number of cores for running the TRex traffic generator.
232     #          ONLY applies to trex-local.
233     # `software_mode`: Advice TRex to use software mode which provides the best compability. But
234     #                  note that TRex will not use any hardware acceleration technology under
235     #                  software mode, therefore the performance of TRex will be significantly
236     #                  lower. ONLY applies to trex-local.
237     #                  Recommended to leave the default value (false)
238     # `limit_memory`: Specify the memory reserved for running the TRex traffic generator (in MB). Limit the amount
239     #                 of packet memory used. (Passed to dpdk as -m arg)
240     #          ONLY applies to trex-local.
241     # `zmq_pub_port`: Specify the ZMQ pub port number for the TRex traffic generator instance (default value is 4500).
242     #          ONLY applies to trex-local.
243     # `zmq_rpc_port`: Specify the ZMQ rpc port for the TRex traffic generator instance (default value is 4501).
244     #          ONLY applies to trex-local.
245     # `interfaces`: Configuration of traffic generator interfaces.
246     # `interfaces.port`: The port of the traffic generator to be used (leave as 0 and 1 resp.)
247     # `interfaces.switch_port`: Leave empty (deprecated)
248     # `interfaces.pci`: The PCI address of the intel NIC interface associated to this port
249     #                   This field is required and cannot be empty
250     #                   Use lspci to list the PCI address of all devices
251     #                   Example of value: "0000:5e:00.0"
252     # `intf_speed`: The speed of the interfaces used by the traffic generator (per direction).
253     #               Empty value (default) to use the speed discovered by the traffic generator.
254     #               Recommended to leave this field empty.
255     #               Do not use unless you want to override the speed discovered by the
256     #               traffic generator. Expected format: 10Gbps
257     #
258     # `platform`: Optional. Used to tune the performance and allocate the cores to the right NUMA.
259     #             See https://trex-tgn.cisco.com/trex/doc/trex_manual.html (6.2.3. Platform section configuration)
260     #             for more details
261     # `platform.master_thread_id`: Hardware thread_id for control thread. (Valid value is mandatory if platform property is set)
262     # `platform.latency_thread_id`: Hardware thread_id for RX thread. (Valid value is mandatory if platform property is set)
263     # `platform.dual_if`: Section defines info for interface pairs (according to the order in “interfaces” list). (Valid value is mandatory if platform property is set)
264     #                     Each section, starting with “- socket” defines info for different interface pair. (Valid value is mandatory if platform property is set)
265     # `platform.dual_if.socket`: The NUMA node from which memory will be allocated for use by the interface pair. (Valid value is mandatory if platform property is set)
266     # `platform.dual_if.threads`: Hardware threads to be used for sending packets for the interface pair. (Valid value is mandatory if platform property is set)
267     #                     Threads are pinned to cores, so specifying threads actually determines the hardware cores.
268     # Example of values:
269     # platform:
270     #   master_thread_id: 0
271     #   latency_thread_id: 2
272     #   dual_if:
273     #     - socket: 0
274     #       threads: [1]
275     #
276     generator_profile:
277         - name: trex-local
278           tool: TRex
279           ip: 127.0.0.1
280           cores: 4
281           software_mode: false
282           limit_memory: 1024
283           zmq_pub_port: 4500
284           zmq_rpc_port: 4501
285           interfaces:
286             - port: 0
287               pci:
288               switch_port:
289             - port: 1
290               pci:
291               switch_port:
292           intf_speed:
293           platform:
294             master_thread_id:
295             latency_thread_id:
296             dual_if:
297               - socket:
298                 threads:
299
300 # Use 'true' to force restart of local TRex server before next run
301 # TRex local server will be restarted even if restart property is false in case of generator config changes between runs
302 restart: false
303
304 # Simpler override for trex core count and mbuf multilier factor
305 # if empty defaults to the one specified in generator_profile.cores
306 cores:
307
308 # Add cache size in packet generation for TRex field engine (FE).
309 # More information for TRex performance:
310 # https://trex-tgn.cisco.com/trex/doc/trex_stateless.html#_tutorial_field_engine_significantly_improve_performance
311 # If cache_size = 0 (or empty): no cache will be used by TRex (default)
312 # If cache_size < 0: cache_size will be set to flow count value
313 cache_size:
314 # The cache size is actually limited by the number of 64B mbufs configured in the trex platform configuration (see Trex manual 6.2.2. Memory section configuration)
315 # Trex will use 1 x 64B mbuf per pre-built cached packet, assuming 1 pre-built cached packet per flow, it means for very large number of flows, the number of configured mbuf_64 will need to be set accordingly.
316 mbuf_64:
317
318 # mbuffer ratio to use for TRex (see TRex documentation for more details)
319 mbuf_factor: 0.2
320
321 # A switch to disable hdrh
322 # hdrh is enabled by default and requires TRex v2.58 or higher
323 disable_hdrh: false
324
325 # -----------------------------------------------------------------------------
326 # These variables are not likely to be changed
327
328 # Number of seconds to wait for VMs to pass traffic in both directions
329 check_traffic_time_sec: 200
330
331 # General retry count
332 generic_retry_count: 100
333
334 # General poll period
335 generic_poll_sec: 2
336
337 # name of the loop VM
338 loop_vm_name: 'nfvbench-loop-vm'
339
340 # Default names, subnets and CIDRs for PVP/PVVP networks (openstack only)
341 #
342 # If a network with given name already exists it will be reused.
343 # - PVP only uses left and right
344 # - PVVP uses left, middle and right
345 # - for EXT chains, this structure is not relevant - refer to external_networks
346 # Otherwise a new internal network will be created with that name, subnet and CIDR.
347 #
348 # network_type must be 'vlan' (for VLAN and SRIOV) or 'vxlan' (for VxLAN)
349 #              all 3 networks must use the same network type in this release
350 # segmentation_id can be set to enforce a specific segmentation id (vlan ID or VNI if vxlan)
351 #                 by default (empty) the segmentation id will be assigned by Neutron.
352 #                 If specified, it must be unique for each network
353 #                 For multi-chaining, see notes below
354 # physical_network can be set to pick a specific phsyical network - by default (empty) the
355 #                   default physical network will be picked
356 # SR-IOV: both physical_network and VLAN segmentation ID must be provided
357 # VxLAN: the VNI must generally be provided (except special Neutron VxLAN implementations)
358 #
359 # For example to setup 1xPVP using 2 different SR-IOV ports, you must put the appropriate physnet
360 # names under left.physical_network and right.physical_network.
361 # For multi-chaining and non shared networks,
362 # Example of override configuration to force PVP to run on 2 SRIOV ports (phys_sriov0 and phys_sriov1)
363 # using VLAN ID 2000 and 2001:
364 # internal_networks:
365 #    left:
366 #        segmentation_id: 2000
367 #        physical_network: phys_sriov0
368 #    right:
369 #        segmentation_id: 2001
370 #        physical_network: phys_sriov1
371 #
372 # For multi-chaining and non shared network mode (VLAN, SRIOV, VxLAN):
373 # - the segmentation_id field if provided must be a list of values (as many as chains)
374 # - segmentation_id auto-indexing:
375 #   the segmentation_id field can also be a single value that represents the base value from which
376 #   values for each chain is derived using the chain ID as an offset. For example
377 #   if 2000 is specified, NFVbench will use 2000 for chain 0, 2001 for chain 1 etc...
378 #   The ranges of all the networks must not overlap.
379 # - the physical_network can be a single name (all VFs to be allocated on same physnet)
380 #   of a list of physnet names to use different PFs
381 #
382 # Example of 2-chain configuration:
383 # internal_networks:
384 #    left:
385 #        segmentation_id: [2000, 2001]
386 #        physical_network: phys_sriov0
387 #    right:
388 #        segmentation_id: [2010, 2011]
389 #        physical_network: phys_sriov1
390 #
391 # Equivalent to (using auto-indexing):
392 # internal_networks:
393 #    left:
394 #        segmentation_id: 2000
395 #        physical_network: phys_sriov0
396 #    right:
397 #        segmentation_id: 2010
398 #        physical_network: phys_sriov1
399
400 internal_networks:
401     left:
402         name: 'nfvbench-lnet'
403         subnet: 'nfvbench-lsubnet'
404         cidr: '192.168.1.0/24'
405         network_type: 'vlan'
406         segmentation_id:
407         physical_network:
408     right:
409         name: 'nfvbench-rnet'
410         subnet: 'nfvbench-rsubnet'
411         cidr: '192.168.2.0/24'
412         network_type: 'vlan'
413         segmentation_id:
414         physical_network:
415     middle:
416         name: 'nfvbench-mnet'
417         subnet: 'nfvbench-msubnet'
418         cidr: '192.168.3.0/24'
419         network_type: 'vlan'
420         segmentation_id:
421         physical_network:
422
423 # IDLE INTERFACES: PVP, PVVP and non shared net only.
424 # By default each test VM will have 2 virtual interfaces for looping traffic.
425 # If service_chain_shared_net is false, additional virtual interfaces can be
426 # added at VM creation time, these interfaces will not carry any traffic and
427 # can be used to test the impact of idle interfaces in the overall performance.
428 # All these idle interfaces will use normal ports (not direct).
429 # Number of idle interfaces per VM (none by default)
430 idle_interfaces_per_vm: 0
431
432 # A new network is created for each idle interface.
433 # If service_chain_shared_net is true, the options below will be ignored
434 # and no idle interfaces will be added.
435 idle_networks:
436     # Prefix for all idle networks, the final name will append the chain ID and idle index
437     # e.g. "nfvbench-idle-net.0.4" chain 0 idle index 4
438     name: 'nfvbench-idle-net'
439     # Subnet name to use for all idle subnetworks 
440     subnet: 'nfvbench-idle-subnet'
441     # CIDR to use for all idle networks (value should not matter)
442     cidr: '192.169.1.0/24'
443     # Type of network associated to the idle virtual interfaces (vlan or vxlan)
444     network_type: 'vlan'
445     # segmentation ID to use for the network attached to the idle virtual interfaces
446     # vlan: leave empty to let neutron pick the segmentation ID
447     # vxlan: must specify the starting VNI value to be used (cannot be empty)
448     # Note that NFVbench will use as many consecutive segmentation IDs as needed.
449     # For example, for 4 PVP chains and 8 idle
450     # interfaces per VM, NFVbench will use 32 consecutive values of segmentation ID
451     # starting from the value provided.
452     segmentation_id:
453     # physnet name to use for all idle interfaces
454     physical_network:
455
456 # MANAGEMENT INTERFACE
457 # By default each test VM will have 2 virtual interfaces for looping traffic.
458 # If use_management_port is true, additional virtual interface can be
459 # added at VM creation time, this interface will be used for VM management over SSH.
460 # This will be helpful for debug (forwarder config, capture traffic...)
461 # or to emulate VNF with management interface
462 use_management_port: false
463
464 # If a network with given name already exists it will be reused.
465 # Otherwise a new network is created for management interface.
466 # If use_management_port is false, the options below will be ignored
467 # and no management interface will be added.
468 management_network:
469     name: 'nfvbench-management-net'
470     # Subnet name to use for management subnetwork
471     subnet: 'nfvbench-management-subnet'
472     # CIDR to use for management network
473     cidr: '192.168.0.0/24'
474     gateway: '192.168.0.254'
475     # Type of network associated to the management virtual interface (vlan or vxlan)
476     network_type: 'vlan'
477     # segmentation ID to use for the network attached to the management virtual interface
478     # vlan: leave empty to let neutron pick the segmentation ID
479     # vxlan: must specify the starting VNI value to be used (cannot be empty)
480     segmentation_id:
481     # physnet name to use for all idle interfaces
482     physical_network:
483
484 # Floating IP for management interface
485 # If use_floating_ip is true, floating IP will be set on management interface port
486 # One floating IP by loop VM will be used (floating ips are often limited,
487 # use them on limited context mainly for debug). If there are 10 PVP chains, this will require 10
488 # floating IPs. If 10 PVVP chains, it will require 20 floating IPs
489 use_floating_ip: false
490
491 # If a network with given name already exists it will be reused.
492 # Set same name as management_network if you want to use a floating IP from this network
493 # Otherwise set name, subnet and CIDR information from your floating IP pool network
494 # Floating network used to set floating IP on management port.
495 # Only 1 floating network will be used for all VMs and chains (shared network).
496 # If use_floating_ip is false, the options below will be ignored
497 # and no floating IP will be added.
498 floating_network:
499     name: 'nfvbench-floating-net'
500     # Subnet name to use for floating subnetwork
501     subnet: 'nfvbench-floating-subnet'
502     # CIDR to use for floating network
503     cidr: '192.168.0.0/24'
504     # Type of network associated to the management virtual interface (vlan or vxlan)
505     network_type: 'vlan'
506     # segmentation ID to use for the network attached to the management virtual interface
507     # vlan: leave empty to let neutron pick the segmentation ID
508     # vxlan: must specify the starting VNI value to be used (cannot be empty)
509     segmentation_id:
510     # physnet name to use for all idle interfaces
511     physical_network:
512
513 # In the scenario of PVVP + SRIOV, there is choice of how the traffic will be
514 # handled in the middle network. The default (false) will use vswitch, while
515 # SRIOV can be used by toggling below setting.
516 use_sriov_middle_net: false
517
518 # EXT chain only. Prefix names of edge networks or list of edge network names
519 # used to send traffic via traffic generator.
520 #
521 # If service_chain_shared_net is true, the left and right networks must pre-exist and match exactly by name.
522 #
523 # If service_chain_shared_net is false, each chain must have its own pre-existing left and right networks.
524 # left and right can take either a string prefix or a list of arbitrary network names
525 # If a string prefix is passed, an index will be appended to each network name to form the final name.
526 # Example:
527 # external_networks:
528 #    left:  'ext-lnet'
529 #    right: 'ext-rnet'
530 # ext-lnet0 ext-rnet0 for chain #0
531 # ext-lnet1 ext-rnet1 for chain #1
532 # etc...
533 # If a list of strings is passed, each string in the list must be the name of the network used for the
534 # chain indexed by the entry position in the list.
535 # The list must have at least as many entries as there are chains
536 # Example:
537 # external_networks:
538 #   left:  ['ext-lnet', 'ext-lnet2']
539 #   right: ['ext-rnet', 'ext-rnet2']
540
541 external_networks:
542     left:
543     right:
544
545 # PVP with L3 router in the packet path only.
546 # Only use when l3_router option is True (see l3_router)
547 # Prefix names of edge networks which will be used to send traffic via traffic generator.
548 # If a network with given name already exists it will be reused.
549 # Otherwise a new edge network will be created with that name, subnet and CIDR.
550 #
551 # gateway can be set in case of L3 traffic with edge networks - refer to edge_networks
552 #
553 # segmentation_id can be set to enforce a specific VLAN id - by default (empty) the VLAN id
554 #                 will be assigned by Neutron.
555 #                 Must be unique for each network
556 # physical_network can be set to pick a specific phsyical network - by default (empty) the
557 #                   default physical network will be picked
558 #
559 edge_networks:
560     left:
561         name: 'nfvbench-net2'
562         router_name: 'router_left'
563         subnet: 'nfvbench-subnet2'
564         cidr: '192.168.3.0/24'
565         gateway:
566         network_type:
567         segmentation_id:
568         physical_network:
569     right:
570         name: 'nfvbench-net3'
571         router_name: 'router_right'
572         subnet: 'nfvbench-subnet3'
573         cidr: '192.168.4.0/24'
574         gateway:
575         network_type:
576         segmentation_id:
577         physical_network:
578
579 # Use 'true' to enable VXLAN encapsulation support and sent by the traffic generator
580 # When this option enabled internal networks 'network type' parameter value should be 'vxlan'
581 vxlan: false
582
583 # Use 'true' to enable VLAN tagging of packets generated and sent by the traffic generator
584 # Leave empty or set to false if you do not want the traffic generator to insert the VLAN tag (this is
585 # needed for example if VLAN tagging is enabled on switch (access mode) or if you want to hook
586 # directly to a NIC).
587 # By default is set to true (which is the nominal use case with TOR and trunk mode to Trex ports)
588 # If VxLAN is enabled, this option should be set to false (vlan tagging for encapsulated packets
589 # is not supported). Use the vtep_vlan option to enable vlan tagging for the VxLAN overlay network.
590 vlan_tagging: true
591
592 # Used only in the case of EXT chain and no openstack or not admin access to specify the VLAN IDs to use.
593 # This property is ignored when OpenStakc is used or in the case of l2-loopback.
594 # If OpenStack is used leave the list empty, VLAN IDs are retrieved from OpenStack networks using Neutron API.
595 # If networks are shared across all chains (service_chain_shared_net=true), the list should have exactly 2 values
596 # If networks are not shared across chains (service_chain_shared_net=false), the list should have
597 # 2 list of vlan IDs
598 # In the special case of l2-loopback the list should have the same VLAN id for all chains
599 # Examples:
600 #   [1998, 1999] left network uses vlan 1998 right network uses vlan 1999
601 #   [[1,2],[3,4]] chain 0 left vlan 1, right vlan 2 - chain 1 left vlan 3 right vlan 4
602 #   [1010, 1010] same VLAN id with l2-loopback enabled
603 #
604 vlans: []
605
606 # ARP is used to discover the MAC address of VNFs that run L3 routing.
607 # Used only with EXT chain.
608 # False (default): ARP requests are sent to find out dest MAC addresses.
609 # True: do not send ARP but use provisioned dest macs instead
610 #       (see mac_addrs_left and mac_addrs_right)
611 no_arp: false
612
613 # Traffic Profiles
614 # You can add here more profiles as needed
615 # `l2frame_size` can be specified in any none zero integer value to represent the size in bytes
616 # of the L2 frame, or "IMIX" to represent the standard 3-packet size mixed sequence (IMIX1).
617 traffic_profile:
618     - name: traffic_profile_64B
619       l2frame_size: ['64']
620     - name: traffic_profile_IMIX
621       l2frame_size: ['IMIX']
622     - name: traffic_profile_1518B
623       l2frame_size: ['1518']
624     - name: traffic_profile_3sizes
625       l2frame_size: ['64', 'IMIX', '1518']
626
627 # Traffic Configuration
628 # bidirectional: to have traffic generated from both direction, set bidirectional to true
629 # profile: must be one of the profiles defined in traffic_profile
630 # The traffic profile can be overriden with the options --frame-size and --uni-dir
631 traffic:
632     bidirectional: true
633     profile: traffic_profile_64B
634
635 # Check config and connectivity only - do not generate traffic
636 # Can be overriden by --no-traffic
637 no_traffic: false
638
639 # Use an L3 router in the packet path. This option if set will create or reuse an openstack neutron
640 # router (PVP, PVVP) or reuse an existing L3 router (EXT) to route traffic to the destination VM.
641 # Can be overriden by --l3-router
642 l3_router: false
643
644 # Test configuration
645
646 # The rate pps for traffic going in reverse direction in case of unidirectional flow. Default to 1.
647 unidir_reverse_traffic_pps: 1
648
649 # The rate specifies if NFVbench should determine the NDR/PDR
650 #  or if NFVbench should just generate traffic at a given fixed rate
651 # for a given duration (called "single run" mode)
652 # Supported rate format:
653 # NDR/PDR test: `ndr`, `pdr`, `ndr_pdr` (default)
654 # Or for single run mode:
655 # Packet per second: pps (e.g. `50pps`)
656 # Bits per second: bps, kbps, Mbps, etc (e.g. `1Gbps`, `1000bps`)
657 # Load percentage: % (e.g. `50%`)
658 # Can be overridden by --rate
659 rate: ndr_pdr
660
661 # Default run duration (single run at given rate only)
662 # Can be overridden by --duration
663 duration_sec: 60
664
665 # Interval between intermediate reports when interval reporting is enabled
666 # Can be overridden by --interval
667 interval_sec: 10
668
669 # Default pause between iterations of a binary search (NDR/PDR)
670 pause_sec: 2
671
672 # NDR / PDR configuration
673 measurement:
674     # Drop rates represent the ratio of dropped packet to the total number of packets sent.
675     # Values provided here are percentages. A value of 0.01 means that at most 0.01% of all
676     # packets sent are dropped (or 1 packet every 10,000 packets sent)
677
678     # No Drop Rate in percentage; Default to 0.001%
679     NDR: 0.001
680     # Partial Drop Rate in percentage; NDR should always be less than PDR
681     PDR: 0.1
682     # The accuracy of NDR and PDR as a percnetage of line rate; The exact NDR
683     # or PDR should be within `load_epsilon` line rate % from the one calculated.
684     # For example, with a value 0.1, and a line rate of 10Gbps, the accuracy
685     # of NDR and PDR will be within 0.1% Of 10Gbps or 10Mbps.
686     # The lower the value the more iterations and the longer it will take to find the NDR/PDR.
687     # In practice, due to the precision of the traffic generator it is not recommended to
688     # set it to lower than 0.1
689     load_epsilon: 0.1
690
691 # Location where to store results in a JSON format. Must be container specific path.
692 # Can be overriden by --json
693 json:
694
695 # Location where to store results in the NFVbench standard JSON format:
696 # <service-chain-type>-<service-chain-count>-<flow-count>-<packet-sizes>.json
697 # Example: PVP-1-10-64-IMIX.json
698 # Must be container specific path.
699 # Can be overriden by --std-json
700 std_json:
701
702 # Prints debug messages (verbose mode)
703 # Can be overriden by --debug
704 debug: false
705
706 # Set to a valid path name if logging to file is to be enabled
707 # Defaults to disabled
708 log_file:
709
710 # When enabled, all results and/or logs will be sent to a fluentd servers at the requested IPs and ports
711 # A list of one or more fluentd servers identified by their IPs and  port numbers should be given.
712 # For each recipient it is possible to enable both sending logs and performance
713 # results, or enable either logs or performance results. For enabling logs or results logging_tag or
714 # result_tag should be set.
715
716 fluentd:
717       # by default (logging_tag is empty) nfvbench log messages are not sent to fluentd
718       # to enable logging to fluents, specify a valid fluentd tag name to be used for the
719       # log records
720     - logging_tag:
721
722       # by default (result_tag is empty) nfvbench results are not sent to fluentd
723       # to enable sending nfvbench results to fluentd, specify a valid fluentd tag name
724       # to be used for the results records, which is different than logging_tag
725       result_tag:
726
727       # IP address of the server, defaults to loopback
728       ip: 127.0.0.1
729
730       # port # to use, by default, use the default fluentd forward port
731       port: 24224
732
733       # by default (logging_tag is empty) nfvbench log messages are not sent to fluentd
734       # to enable logging to fluents, specify a valid fluentd tag name to be used for the
735       # log records
736
737 # Module and class name of factory which will be used to provide classes dynamically for other components.
738 factory_module: 'nfvbench.factory'
739 factory_class: 'BasicFactory'
740
741 # Custom label added for every perf record generated during this run.
742 # Can be overriden by --user-label
743 user_label:
744
745
746 # THESE FIELDS SHOULD BE USED VERY RARELY
747
748 # Skip vswitch configuration and retrieving of stats
749 # Can be overriden by --no-vswitch-access
750 # Should be left to the default value (false)
751 no_vswitch_access: false
752
753
754 # Enable service mode for trafic capture from TRex console (for debugging purpose)
755 # Can be overriden by --service-mode
756 # Should be left to the default value (false)
757 service_mode: false
758
759 # Disable extra flow stats (on high load traffic)
760 # Can be overriden by --no-flow-stats
761 # Should be left to the default value (false)
762 no_flow_stats: false
763
764 # Disable flow stats for latency traffic
765 # Can be overriden by --no-latency-stats
766 # Should be left to the default value (false)
767 no_latency_stats: false
768
769 # Disable latency measurements (no streams)
770 # Can be overriden by --no-latency-stream
771 # Should be left to the default value (false)
772 no_latency_streams: false