Switched multi-threads testing from iperf3 to iperf

Switched multi-threads testing from iperf3 to iperf because the
iperf3 was not designed for the multiple threads, see [1] and [2].
So, iperf (v2) will be used for measuring tests with -P option.

Made the number of threads as an configurable option (10 by default).

* installing iperf package
* allowing 5001 port
* starting iperf as well as iperf3 at VMs
* added 'multiple_threads_number' option (10 by default)
* added details which tool was used (iperf3 or iperf) in the final table
* changed the default image from Ubuntu18 to Ubuntu20

[1] https: //fasterdata.es.net/performance-testing/network-troubleshooting-tools/iperf/multi-stream-iperf3/
[2] https: //github.com/esnet/iperf/issues/289

Related-PROD: PROD-36943
Change-Id: I39d2c44723344c87836bf7b5fa02b546a08f2ca5
diff --git a/global_config.yaml b/global_config.yaml
index 025bd60..5bdb6f0 100644
--- a/global_config.yaml
+++ b/global_config.yaml
@@ -4,7 +4,7 @@
 
 # parameters for vm2vm test
 CMP_HOSTS: []
-image_name: "Ubuntu-18.04"
+image_name: "cvp.ubuntu.2004" # Use Ubuntu 20.04 LTS image
 flavor_name: 'spt-test'
 flavor_ram: 1536
 flavor_vcpus: 1
@@ -16,5 +16,6 @@
 internet_at_vms: 'true' # whether Internet is present at OpenStack VMs and iperf can be installed with apt
 iperf_deb_package_dir_path: '/opt/packages/'
 iperf_time: 60 # time in seconds to transmit for (iperf -t option)
+multiple_threads_number: 10
 ssh_timeout: 500
 skipped_nodes: []