2020-01-16 16:10:17,293 - xtesting.ci.run_tests - INFO - Deployment description: +-------------------------+----------------------------------------------------------------------------------------------------------------+ | ENV VAR | VALUE | +-------------------------+----------------------------------------------------------------------------------------------------------------+ | TEST_DB_EXT_URL | http://testresults.opnfv.org/test/api/v1/results | | S3_DST_URL | s3://artifacts.opnfv.org/airship/RGL00QOJX265/airship-opnfv-functest-benchmarking-latest-vmtp-run-86 | | S3_ENDPOINT_URL | https://storage.googleapis.com | | DEPLOY_SCENARIO | os-nosdn-nofeature-ha | | BUILD_TAG | RGL00QOJX265 | | DEBUG | true | | INSTALLER_TYPE | airship | | CI_LOOP | daily | | TEST_DB_URL | http://testresults.opnfv.org/test/api/v1/results | | HTTP_DST_URL | http://artifacts.opnfv.org/airship/RGL00QOJX265/airship-opnfv-functest-benchmarking-latest-vmtp-run-86 | | NODE_NAME | intel-pod17 | +-------------------------+----------------------------------------------------------------------------------------------------------------+ 2020-01-16 16:10:17,298 - xtesting.ci.run_tests - INFO - Sourcing env file /var/lib/xtesting/conf/env_file export OS_AUTH_URL=http://identity-airship.intel-pod17.opnfv.org:80/v3 export OS_USER_DOMAIN_NAME=default export OS_PROJECT_DOMAIN_NAME=default export OS_USERNAME=admin export OS_PROJECT_NAME=admin export OS_PASSWORD=password123 export OS_IDENTITY_API_VERSION=3 export OS_INTERFACE=public export OS_REGION_NAME=intel-pod17 2020-01-16 16:10:17,298 - xtesting.ci.run_tests - DEBUG - Test args: vmtp 2020-01-16 16:10:17,308 - xtesting.ci.run_tests - INFO - Loading test case 'vmtp'... 2020-01-16 16:10:18,070 - functest.core.tenantnetwork - DEBUG - password: =ERRXcza*!VL # Property values in that config file will override the default values in the current file # --- # Name of the image to use for launching the test VMs. This name must be # the exact same name used in OpenStack (as shown from 'nova image-list') # Any image running Linux should work (Fedora, Ubuntu, CentOS...) image_name: 'Ubuntu Server 14.04' #image_name: 'Fedora 21' # User name to use to ssh to the test VMs # This is specific to the image being used ssh_vm_username: 'ubuntu' #ssh_vm_username: fedora # Flavor name to use for all VMs created by VMTP. # If this flavor is unspecified, flavor name will be set to default name "vmtp". # If this flavor exists it will be re-used as-is by VMTP. # Otherwise, a flavor with attributes specified in flavor property will be created. flavor_type: 'vmtp' # Custom flavor attributes # This flavor attributes is used to create a new flavor # if flavor_type is unspecified or doesn't exist in openstack. # Any created flavor will be deleted after vmtp ends. flavor: # Number of vCPUs for the flavor vcpus: 1 # Memory for the flavor in MB ram: 2048 # Size of local disk in GB disk: 0 # metadata are supported and can be added if needed, optional # extra_specs: # "hw:cpu_policy": dedicated # "hw:mem_page_size": 2048 # Name of the availability zone to use for the test VMs # Must be one of the zones listed by 'nova availability-zone-list' # If the zone selected contains more than 1 compute node, the script # will determine inter-node and intra-node throughput. If it contains only # 1 compute node, only intra-node troughput will be measured. # If empty (default), VMTP will automatically pick the first 2 hosts # that are compute nodes regardless of the availability zone #availability_zone: 'nova' availability_zone: # DNS server IP addresses to use for the VM (list of 1 or more DNS servers) # This default DNS server is available on the Internet, # Change this to use a different DNS server if necessary, dns_nameservers: [ '8.8.8.8' ] # VMTP can automatically download a VM image if the image named by # image_name is missing, for that you need to specify a URL where # the image can be retrieved # # A link to a Ubuntu Server 14.04 qcow2 image can be used here: # https://cloud-images.ubuntu.com/trusty/current/trusty-server-cloudimg-amd64-disk1.img # # To upload the image as a file, prepend it with file:// like below # file:// vm_image_url: '' # ----------------------------------------------------------------------------- # These variables are not likely to be changed # Set this variable to a network name if you want the script to reuse # a specific existing external network. If empty, the script will reuse the # first external network it can find (the cloud must have at least 1 # external network defined and available for use) # # NOTE: When set, router and floating ip creation will be ignored, and the # existing management network will be used for tests. This is used for runnig # VMTP on a provider network. reuse_network_name: # Use of the script for special deployments floating_ip: True # Set this to an existing VM name if the script should not create new VM # and reuse existing VM reuse_existing_vm: # Set config drive to true to bypass metadata service and use config drive # An option of config_drive to True is provided to nova boot to enable this config_drive: # The location of the user_data file, which will be passed to every instance # when booting. user_data_file: # ipv6 mode. Set this to one of the following 3 modes # slaac : VM obtains IPV6 address from Openstack radvd using SLAAC # dhcpv6-stateful : VM obtains ipv6 address from dnsmasq using DHCPv6 stateful # dhcpv6-stateless : VM obtains ipv6 address from Openstack radvd using SLAAC and options from dnsmasq # If left blank use ipv4 ipv6_mode: # Default name for the router to use to connect the internal mgmt network # with the external network. If a router exists with this name it will be # reused, otherwise a new router will be created router_name: 'pns-router' # Defaul names for the internal networks used by the # script. If an existing network with this name exists it will be reused. # Otherwise a new internal network will be created with that name. # 2 networks are needed to test the case of network to network communication internal_network_name: ['pns-internal-net', 'pns-internal-net2'] # Name of the subnets associated to the internal mgmt network internal_subnet_name: ['pns-internal-subnet', 'pns-internal-subnet2'] # Name of the subnets for ipv6 internal_subnet_name_v6: ['pns-internal-v6-subnet','pns-internal-v6-subnet2'] # Default CIDRs to use for the internal mgmt subnet internal_cidr: ['192.168.1.0/24' , '192.168.2.0/24'] # Default CIDRs to use for data network for ipv6 internal_cidr_v6: ['2001:45::/64','2001:46::/64'] # The public and private keys to use to ssh to all targets (VMs, containers, hosts) # By default the SSH library will try several methods to authenticate: # - password if provided on the command line # - user's own key pair (under the home directory $HOME) if already setup # - the below key pair if not empty # If you want to use a specific key pair, specify the key pair files here. # This can be a pathname that is absolute or relative to the current directory public_key_file: private_key_file: # Name of the P&S public key in OpenStack to create for all test VMs public_key_name: 'pns_public_key' # name of the server VM vm_name_server: 'TestServer' # name of the client VM vm_name_client: 'TestClient' # name of the security group to create and use security_group_name: 'pns-security' # ping variables ping_count: 2 ping_pass_threshold: 80 # Max retry count for ssh to a VM (5 seconds between retries) ssh_retry_count: 50 # General retry count generic_retry_count: 50 # Times to run when measuring TCP Throughput tcp_tp_loop_count: 3 # TCP throughput list of packet sizes to measure # Can be overridden at the command line using --tcpbuf tcp_pkt_sizes: [65536] # UDP throughput list of packet sizes to measure # By default we measure for small, medium and large packets # Can be overridden at the command line using --udpbuf udp_pkt_sizes: [128, 1024, 8192] # List of packet sizes to measure with ping # By default we measure for 64 (small), 391 (IMIX average) and 1500 (large) icmp_pkt_sizes: [64, 391, 1500] # UDP packet loss rate threshold in percentage beyond which bandwidth # iterations stop and below which iteration with a higher # bandwidth continues # The first number is the minimal loss rate (inclusive) # The second number is the maximum loss rate (inclusive) # Iteration to find the "optimal" bandwidth will stop as soon as the loss rate # falls within that range: min <= loss_rate <= max # The final throughput measurement may return a loss rate out of this range # as that measurement is taken on a longer time than when iterating to find # the optimal throughput udp_loss_rate_range: [2, 5] # The default bandwidth limit (in Kbps) for TCP/UDP flow measurement # 0 means unlimited, which can be overridden at the command line using --bandwidth vm_bandwidth: 0 # Internal network name for OpenStack to hold data plane traffic os_dataplane_network: 'physnet1' ####################################### # VMTP MongoDB Connection information ####################################### ######################################## # Default MongoDB port is 27017, to override #vmtp_mongod_port: ######################################## # MongoDB pns database. # use "official_db" for official runs only. ######################################## vmtp_db: "client_db" ######################################## # MongoDB collection name. ######################################## vmtp_collection: "pns_web_entry" # When enabled, all logs will be sent to a fluentd server at the requested IP and port # The fluentd "tag" and "label" fields for every message will be set to "nfvbench" fluentd: # by default (logging_tag is empty) nfvbench log messages are not sent to fluentd # to enable logging to fluents, specify a valid fluentd tag name to be used for the # log records logging_tag: # IP address of the server, defaults to loopback ip: 127.0.0.1 # port # to use, by default, use the default fluentd forward port port: 24224 2020-01-16 16:32:10,153 - functest.opnfv_tests.openstack.vmtp.vmtp - INFO - vmtp -d --json /home/opnfv/functest/results/vmtp/vmtp.json -c /home/opnfv/functest/results/vmtp/vmtp.conf 2020-01-16 16:10:35,074 INFO Using http://identity-airship.intel-pod17.opnfv.org:80/v3 2020-01-16 16:10:35,075 INFO VM public key: /tmp/tmpevaQK2 2020-01-16 16:10:35,075 INFO VM private key: /tmp/tmp4ZOyCw 2020-01-16 16:10:35,738 INFO Found image vmtp-img_a6611bbb-38ee-4cf6-a293-d1817ab697bf to launch VM, will continue 2020-01-16 16:10:36,322 INFO Using external router: vmtp-router_a6611bbb-38ee-4cf6-a293-d1817ab697bf 2020-01-16 16:10:36,323 INFO Using external network: public. 2020-01-16 16:10:37,220 INFO Created internal network: pns-internal-net_a6611bbb-38ee-4cf6-a293-d1817ab697bf. 2020-01-16 16:10:37,986 INFO Created internal network: pns-internal-net2_a6611bbb-38ee-4cf6-a293-d1817ab697bf. 2020-01-16 16:10:40,359 DEBUG Ext router associated to pns-internal-net_a6611bbb-38ee-4cf6-a293-d1817ab697bf 2020-01-16 16:10:42,312 DEBUG Ext router associated to pns-internal-net2_a6611bbb-38ee-4cf6-a293-d1817ab697bf 2020-01-16 16:10:42,578 INFO OpenStack agent: Open vSwitch agent 2020-01-16 16:10:42,578 INFO OpenStack network type: vxlan 2020-01-16 16:10:43,674 INFO [TestServer_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] Creating server VM... 2020-01-16 16:10:43,675 DEBUG [TestServer_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] Starting on zone nova:pod17-node4 2020-01-16 16:10:45,029 DEBUG [TestServer_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] VM status=BUILD, retrying 1 of 150... 2020-01-16 16:10:47,364 DEBUG [TestServer_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] VM status=BUILD, retrying 2 of 150... 2020-01-16 16:10:49,682 DEBUG [TestServer_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] VM status=BUILD, retrying 3 of 150... 2020-01-16 16:10:52,018 DEBUG [TestServer_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] VM status=BUILD, retrying 4 of 150... 2020-01-16 16:10:54,361 DEBUG [TestServer_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] VM status=BUILD, retrying 5 of 150... 2020-01-16 16:10:56,803 DEBUG [TestServer_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] VM status=BUILD, retrying 6 of 150... 2020-01-16 16:10:59,147 DEBUG [TestServer_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] VM status=BUILD, retrying 7 of 150... 2020-01-16 16:11:01,510 DEBUG [TestServer_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] VM status=BUILD, retrying 8 of 150... 2020-01-16 16:11:06,094 INFO [TestServer_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] Internal network IP: 192.168.1.6 2020-01-16 16:11:06,094 INFO [TestServer_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] SSH IP: 10.10.175.33 2020-01-16 16:11:06,094 INFO [TestServer_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] Setup SSH for ubuntu@10.10.175.33 2020-01-16 16:11:46,393 INFO [TestServer_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] Installing nuttcp-8.1.4... 2020-01-16 16:11:46,436 DEBUG [TestServer_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] Copying nuttcp-8.1.4 to target... 2020-01-16 16:11:47,444 DEBUG [TestServer_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] Starting nuttcp-8.1.4 server... 2020-01-16 16:11:47,488 DEBUG [TestServer_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] 2020-01-16 16:11:47,535 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] Creating client VM... 2020-01-16 16:11:47,536 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] Starting on zone nova:pod17-node4 2020-01-16 16:11:48,490 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] VM status=BUILD, retrying 1 of 150... 2020-01-16 16:11:50,711 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] VM status=BUILD, retrying 2 of 150... 2020-01-16 16:11:53,060 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] VM status=BUILD, retrying 3 of 150... 2020-01-16 16:11:55,392 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] VM status=BUILD, retrying 4 of 150... 2020-01-16 16:11:57,714 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] VM status=BUILD, retrying 5 of 150... 2020-01-16 16:12:00,045 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] VM status=BUILD, retrying 6 of 150... 2020-01-16 16:12:04,984 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] Internal network IP: 192.168.1.4 2020-01-16 16:12:04,984 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] SSH IP: 10.10.175.59 2020-01-16 16:12:04,984 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] Setup SSH for ubuntu@10.10.175.59 2020-01-16 16:12:29,706 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] Installing nuttcp-8.1.4... 2020-01-16 16:12:29,780 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] Copying nuttcp-8.1.4 to target... 2020-01-16 16:12:30,032 INFO ============================================================ 2020-01-16 16:12:30,033 INFO Flow 1: VM to VM same network fixed IP (intra-node) 2020-01-16 16:12:39,244 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] PING 192.168.1.6 (192.168.1.6) 64(92) bytes of data. 72 bytes from 192.168.1.6: icmp_seq=1 ttl=64 time=1.44 ms 72 bytes from 192.168.1.6: icmp_seq=2 ttl=64 time=0.202 ms 72 bytes from 192.168.1.6: icmp_seq=3 ttl=64 time=0.349 ms 72 bytes from 192.168.1.6: icmp_seq=4 ttl=64 time=0.193 ms 72 bytes from 192.168.1.6: icmp_seq=5 ttl=64 time=0.323 ms 72 bytes from 192.168.1.6: icmp_seq=6 ttl=64 time=0.149 ms 72 bytes from 192.168.1.6: icmp_seq=7 ttl=64 time=0.296 ms 72 bytes from 192.168.1.6: icmp_seq=8 ttl=64 time=0.362 ms 72 bytes from 192.168.1.6: icmp_seq=9 ttl=64 time=0.675 ms 72 bytes from 192.168.1.6: icmp_seq=10 ttl=64 time=0.212 ms --- 192.168.1.6 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9161ms rtt min/avg/max/mdev = 0.149/0.420/1.445/0.370 ms 2020-01-16 16:12:48,284 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] PING 192.168.1.6 (192.168.1.6) 391(419) bytes of data. 399 bytes from 192.168.1.6: icmp_seq=1 ttl=64 time=0.188 ms 399 bytes from 192.168.1.6: icmp_seq=2 ttl=64 time=0.308 ms 399 bytes from 192.168.1.6: icmp_seq=3 ttl=64 time=0.334 ms 399 bytes from 192.168.1.6: icmp_seq=4 ttl=64 time=0.437 ms 399 bytes from 192.168.1.6: icmp_seq=5 ttl=64 time=0.161 ms 399 bytes from 192.168.1.6: icmp_seq=6 ttl=64 time=0.461 ms 399 bytes from 192.168.1.6: icmp_seq=7 ttl=64 time=0.409 ms 399 bytes from 192.168.1.6: icmp_seq=8 ttl=64 time=0.506 ms 399 bytes from 192.168.1.6: icmp_seq=9 ttl=64 time=0.378 ms 399 bytes from 192.168.1.6: icmp_seq=10 ttl=64 time=0.309 ms --- 192.168.1.6 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 8997ms rtt min/avg/max/mdev = 0.161/0.349/0.506/0.107 ms 2020-01-16 16:12:57,332 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] PING 192.168.1.6 (192.168.1.6) 1500(1528) bytes of data. 1508 bytes from 192.168.1.6: icmp_seq=1 ttl=64 time=1.05 ms 1508 bytes from 192.168.1.6: icmp_seq=2 ttl=64 time=0.409 ms 1508 bytes from 192.168.1.6: icmp_seq=3 ttl=64 time=0.450 ms 1508 bytes from 192.168.1.6: icmp_seq=4 ttl=64 time=0.522 ms 1508 bytes from 192.168.1.6: icmp_seq=5 ttl=64 time=0.409 ms 1508 bytes from 192.168.1.6: icmp_seq=6 ttl=64 time=0.341 ms 1508 bytes from 192.168.1.6: icmp_seq=7 ttl=64 time=0.287 ms 1508 bytes from 192.168.1.6: icmp_seq=8 ttl=64 time=0.498 ms 1508 bytes from 192.168.1.6: icmp_seq=9 ttl=64 time=0.452 ms 1508 bytes from 192.168.1.6: icmp_seq=10 ttl=64 time=0.496 ms --- 192.168.1.6 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9002ms rtt min/avg/max/mdev = 0.287/0.492/1.057/0.200 ms 2020-01-16 16:12:57,332 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] Measuring TCP Throughput (packet size=65536)... 2020-01-16 16:12:57,333 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] /tmp/nuttcp-8.1.4 -a -T10 -l65536 -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:13:07,433 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] megabytes=4999.5625 real_seconds=10.00 rate_Mbps=4194.6153 tx_cpu=20 rx_cpu=37 retrans=4 cwnd=3028 rtt_ms=0.88 2020-01-16 16:13:07,436 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] /tmp/nuttcp-8.1.4 -a -T10 -l65536 -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:13:17,562 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] megabytes=5052.1228 real_seconds=10.00 rate_Mbps=4238.6220 tx_cpu=16 rx_cpu=14 retrans=4 cwnd=3135 rtt_ms=0.44 2020-01-16 16:13:17,562 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] /tmp/nuttcp-8.1.4 -a -T10 -l65536 -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:13:27,660 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] megabytes=6247.2506 real_seconds=10.00 rate_Mbps=5241.7850 tx_cpu=11 rx_cpu=20 retrans=1 cwnd=3137 rtt_ms=0.32 2020-01-16 16:13:27,660 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] Measuring UDP Throughput (packet size=128)... 2020-01-16 16:13:27,661 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R5000000K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:13:30,990 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] megabytes=4.6729 real_seconds=1.01 rate_Mbps=38.9358 tx_cpu=4 rx_cpu=9 drop=6269 pkt=44550 data_loss=14.07267 2020-01-16 16:13:30,992 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] pkt-size=128 throughput=1<39870/5000000<10000000 Kbps loss-rate=14 2020-01-16 16:13:30,992 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R119610K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:13:34,347 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] megabytes=4.3651 real_seconds=1.00 rate_Mbps=36.7927 tx_cpu=3 rx_cpu=9 drop=6106 pkt=41865 data_loss=14.58566 2020-01-16 16:13:34,348 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] pkt-size=128 throughput=1<37675/119610<119610 Kbps loss-rate=14 2020-01-16 16:13:34,348 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R78642K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:13:37,707 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] megabytes=4.4232 real_seconds=1.00 rate_Mbps=37.2315 tx_cpu=4 rx_cpu=9 drop=5809 pkt=42044 data_loss=13.81642 2020-01-16 16:13:37,707 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] pkt-size=128 throughput=1<38125/78642<78642 Kbps loss-rate=13 2020-01-16 16:13:37,708 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R58383K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:13:41,063 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] megabytes=4.7261 real_seconds=0.99 rate_Mbps=39.8737 tx_cpu=4 rx_cpu=9 drop=6550 pkt=45266 data_loss=14.46902 2020-01-16 16:13:41,063 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] pkt-size=128 throughput=1<40830/58383<58383 Kbps loss-rate=14 2020-01-16 16:13:41,064 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R49606K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:13:44,424 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] megabytes=2.6531 real_seconds=0.56 rate_Mbps=39.4715 tx_cpu=47 rx_cpu=7 drop=3543 pkt=25277 data_loss=14.01672 2020-01-16 16:13:44,424 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] pkt-size=128 throughput=1<40418/49606<49606 Kbps loss-rate=14 2020-01-16 16:13:44,425 DEBUG overshot, min=1 kbps=40418 max=49606 2020-01-16 16:13:44,425 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R40418K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:13:48,185 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] megabytes=2.7250 real_seconds=1.40 rate_Mbps=16.3583 tx_cpu=3 rx_cpu=4 drop=3090 pkt=25413 data_loss=12.15911 2020-01-16 16:13:48,186 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] pkt-size=128 throughput=1<16750/40418<49606 Kbps loss-rate=12 2020-01-16 16:13:48,186 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R28584K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:13:52,239 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] megabytes=2.7073 real_seconds=1.63 rate_Mbps=13.9155 tx_cpu=8 rx_cpu=5 drop=2454 pkt=24632 data_loss=9.96076 2020-01-16 16:13:52,239 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] pkt-size=128 throughput=1<14249/28584<28584 Kbps loss-rate=9 2020-01-16 16:13:52,240 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R21416K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:13:56,159 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] megabytes=2.0656 real_seconds=1.55 rate_Mbps=11.1768 tx_cpu=13 rx_cpu=4 drop=537 pkt=17458 data_loss=3.07353 2020-01-16 16:13:56,159 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] pkt-size=128 throughput=1<11445/21416<21416 Kbps loss-rate=3 2020-01-16 16:13:56,159 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R16430K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:13:59,546 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] megabytes=1.7860 real_seconds=1.02 rate_Mbps=14.6527 tx_cpu=70 rx_cpu=7 drop=56 pkt=14687 data_loss=0.37929 2020-01-16 16:13:59,546 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] pkt-size=128 throughput=1<15004/16430<16430 Kbps loss-rate=0 2020-01-16 16:13:59,547 DEBUG undershot, min=15004 kbps=15717 max=16430 2020-01-16 16:13:59,547 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R15717K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:14:03,185 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] megabytes=1.7158 real_seconds=1.00 rate_Mbps=14.4074 tx_cpu=54 rx_cpu=5 drop=877 pkt=14932 data_loss=5.87009 2020-01-16 16:14:03,185 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] pkt-size=128 throughput=15004<14753/15717<16430 Kbps loss-rate=5 2020-01-16 16:14:03,185 DEBUG overshot, min=15004 kbps=14753 max=15717 2020-01-16 16:14:03,186 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] Measuring UDP Throughput (packet size=1024)... 2020-01-16 16:14:03,186 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R5000000K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:14:07,663 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] megabytes=33.2510 real_seconds=1.01 rate_Mbps=277.5257 tx_cpu=16 rx_cpu=7 drop=4856 pkt=38905 data_loss=12.48171 2020-01-16 16:14:07,664 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] pkt-size=1024 throughput=1<284186/5000000<10000000 Kbps loss-rate=12 2020-01-16 16:14:07,664 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R852558K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:14:11,690 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] megabytes=31.3301 real_seconds=1.66 rate_Mbps=157.9354 tx_cpu=4 rx_cpu=5 drop=5302 pkt=37384 data_loss=14.18245 2020-01-16 16:14:11,691 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] pkt-size=1024 throughput=1<161725/852558<852558 Kbps loss-rate=14 2020-01-16 16:14:11,692 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R485175K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:14:16,199 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] megabytes=28.8418 real_seconds=1.60 rate_Mbps=151.6001 tx_cpu=4 rx_cpu=5 drop=4270 pkt=33804 data_loss=12.63158 2020-01-16 16:14:16,199 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] pkt-size=1024 throughput=1<155238/485175<485175 Kbps loss-rate=12 2020-01-16 16:14:16,199 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R320206K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:14:20,151 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] megabytes=29.9414 real_seconds=1.62 rate_Mbps=155.3351 tx_cpu=4 rx_cpu=6 drop=4389 pkt=35049 data_loss=12.52239 2020-01-16 16:14:20,151 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] pkt-size=1024 throughput=1<159063/320206<320206 Kbps loss-rate=12 2020-01-16 16:14:20,152 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R239634K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:14:23,479 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] megabytes=25.8750 real_seconds=0.99 rate_Mbps=218.8675 tx_cpu=15 rx_cpu=8 drop=2654 pkt=29150 data_loss=9.10464 2020-01-16 16:14:23,479 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] pkt-size=1024 throughput=1<224120/239634<239634 Kbps loss-rate=9 2020-01-16 16:14:23,480 DEBUG overshot, min=1 kbps=224120 max=239634 2020-01-16 16:14:23,480 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R224120K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:14:27,216 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] megabytes=22.3574 real_seconds=0.66 rate_Mbps=282.4292 tx_cpu=42 rx_cpu=7 drop=3432 pkt=26326 data_loss=13.03668 2020-01-16 16:14:27,216 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] pkt-size=1024 throughput=1<289207/224120<239634 Kbps loss-rate=13 2020-01-16 16:14:27,217 DEBUG overshot, min=1 kbps=112060 max=224120 2020-01-16 16:14:27,217 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R112060K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:14:30,576 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] megabytes=9.9600 real_seconds=0.69 rate_Mbps=121.3631 tx_cpu=36 rx_cpu=3 drop=1594 pkt=11793 data_loss=13.51614 2020-01-16 16:14:30,576 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] pkt-size=1024 throughput=1<124275/112060<224120 Kbps loss-rate=13 2020-01-16 16:14:30,577 DEBUG overshot, min=1 kbps=56030 max=112060 2020-01-16 16:14:30,577 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R56030K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:14:34,591 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] megabytes=3.6855 real_seconds=1.29 rate_Mbps=23.9722 tx_cpu=99 rx_cpu=43 drop=0 pkt=3774 data_loss=0.00000 2020-01-16 16:14:34,592 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] pkt-size=1024 throughput=1<24547/56030<112060 Kbps loss-rate=0 2020-01-16 16:14:34,592 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R40288K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:14:38,194 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] megabytes=2.5771 real_seconds=1.25 rate_Mbps=17.3565 tx_cpu=99 rx_cpu=1 drop=0 pkt=2639 data_loss=0.00000 2020-01-16 16:14:38,195 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] pkt-size=1024 throughput=1<17773/40288<40288 Kbps loss-rate=0 2020-01-16 16:14:38,195 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R29030K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:14:42,209 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] megabytes=3.3311 real_seconds=1.69 rate_Mbps=16.5796 tx_cpu=99 rx_cpu=0 drop=0 pkt=3411 data_loss=0.00000 2020-01-16 16:14:42,210 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] pkt-size=1024 throughput=1<16977/29030<29030 Kbps loss-rate=0 2020-01-16 16:14:42,210 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R23003K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:14:46,741 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] megabytes=2.5342 real_seconds=1.64 rate_Mbps=12.9317 tx_cpu=99 rx_cpu=0 drop=0 pkt=2595 data_loss=0.00000 2020-01-16 16:14:46,741 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] pkt-size=1024 throughput=1<13242/23003<23003 Kbps loss-rate=0 2020-01-16 16:14:46,742 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R18122K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:14:50,198 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] megabytes=0.8936 real_seconds=1.12 rate_Mbps=6.6696 tx_cpu=98 rx_cpu=0 drop=0 pkt=915 data_loss=0.00000 2020-01-16 16:14:50,199 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] pkt-size=1024 throughput=1<6829/18122<18122 Kbps loss-rate=0 2020-01-16 16:14:50,199 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R12475K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:14:54,439 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] megabytes=1.3926 real_seconds=1.67 rate_Mbps=6.9925 tx_cpu=98 rx_cpu=0 drop=0 pkt=1426 data_loss=0.00000 2020-01-16 16:14:54,439 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] pkt-size=1024 throughput=1<7160/12475<12475 Kbps loss-rate=0 2020-01-16 16:14:54,440 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R9817K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:14:58,188 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] megabytes=0.8086 real_seconds=1.39 rate_Mbps=4.8775 tx_cpu=98 rx_cpu=0 drop=0 pkt=828 data_loss=0.00000 2020-01-16 16:14:58,188 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] pkt-size=1024 throughput=1<4994/9817<9817 Kbps loss-rate=0 2020-01-16 16:14:58,189 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R7405K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:15:02,671 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] megabytes=0.8604 real_seconds=1.70 rate_Mbps=4.2539 tx_cpu=99 rx_cpu=0 drop=0 pkt=881 data_loss=0.00000 2020-01-16 16:15:02,672 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] pkt-size=1024 throughput=1<4355/7405<7405 Kbps loss-rate=0 2020-01-16 16:15:02,672 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R5880K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:15:06,716 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] megabytes=0.3223 real_seconds=1.17 rate_Mbps=2.3169 tx_cpu=99 rx_cpu=0 drop=0 pkt=330 data_loss=0.00000 2020-01-16 16:15:06,717 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] pkt-size=1024 throughput=1<2372/5880<5880 Kbps loss-rate=0 2020-01-16 16:15:06,717 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R4126K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:15:10,523 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] megabytes=0.2158 real_seconds=1.17 rate_Mbps=1.5512 tx_cpu=99 rx_cpu=0 drop=0 pkt=221 data_loss=0.00000 2020-01-16 16:15:10,524 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] pkt-size=1024 throughput=1<1588/4126<4126 Kbps loss-rate=0 2020-01-16 16:15:10,524 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R2857K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:15:14,016 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] megabytes=0.2158 real_seconds=1.16 rate_Mbps=1.5660 tx_cpu=99 rx_cpu=0 drop=0 pkt=221 data_loss=0.00000 2020-01-16 16:15:14,016 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] pkt-size=1024 throughput=1<1603/2857<2857 Kbps loss-rate=0 2020-01-16 16:15:14,017 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R2230K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:15:17,707 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] megabytes=0.2666 real_seconds=1.00 rate_Mbps=2.2305 tx_cpu=100 rx_cpu=0 drop=0 pkt=273 data_loss=0.00000 2020-01-16 16:15:17,707 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] pkt-size=1024 throughput=1<2284/2230<2230 Kbps loss-rate=0 2020-01-16 16:15:17,707 DEBUG undershot, min=2284 kbps=2257 max=2230 2020-01-16 16:15:17,708 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] Measuring UDP Throughput (packet size=8192)... 2020-01-16 16:15:17,708 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R5000000K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:15:22,130 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] megabytes=69.4609 real_seconds=1.01 rate_Mbps=578.2684 tx_cpu=29 rx_cpu=2 drop=8215 pkt=17106 data_loss=48.02410 2020-01-16 16:15:22,130 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] pkt-size=8192 throughput=1<592146/5000000<10000000 Kbps loss-rate=48 2020-01-16 16:15:22,131 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R1776438K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:15:26,229 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] megabytes=82.5000 real_seconds=1.72 rate_Mbps=401.2217 tx_cpu=45 rx_cpu=4 drop=10828 pkt=21388 data_loss=50.62653 2020-01-16 16:15:26,229 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] pkt-size=8192 throughput=1<410851/1776438<1776438 Kbps loss-rate=50 2020-01-16 16:15:26,230 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R1093644K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:15:30,736 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] megabytes=79.4375 real_seconds=1.64 rate_Mbps=406.8399 tx_cpu=7 rx_cpu=4 drop=4892 pkt=15060 data_loss=32.48337 2020-01-16 16:15:30,736 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] pkt-size=8192 throughput=1<416604/1093644<1093644 Kbps loss-rate=32 2020-01-16 16:15:30,737 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R755124K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:15:34,209 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] megabytes=34.2422 real_seconds=1.12 rate_Mbps=257.2871 tx_cpu=9 rx_cpu=2 drop=151 pkt=4534 data_loss=3.33043 2020-01-16 16:15:34,209 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] pkt-size=8192 throughput=1<263461/755124<755124 Kbps loss-rate=3 2020-01-16 16:15:34,210 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R509292K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:15:38,200 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] megabytes=56.2812 real_seconds=1.62 rate_Mbps=290.8905 tx_cpu=98 rx_cpu=3 drop=0 pkt=7204 data_loss=0.00000 2020-01-16 16:15:38,201 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] pkt-size=8192 throughput=1<297871/509292<509292 Kbps loss-rate=0 2020-01-16 16:15:38,201 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R403581K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:15:42,196 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] megabytes=45.0000 real_seconds=1.64 rate_Mbps=230.3754 tx_cpu=99 rx_cpu=2 drop=0 pkt=5760 data_loss=0.00000 2020-01-16 16:15:42,197 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] pkt-size=8192 throughput=1<235904/403581<403581 Kbps loss-rate=0 2020-01-16 16:15:42,197 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R319742K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:15:45,817 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] megabytes=36.7969 real_seconds=1.29 rate_Mbps=239.6627 tx_cpu=100 rx_cpu=2 drop=0 pkt=4710 data_loss=0.00000 2020-01-16 16:15:45,818 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] pkt-size=8192 throughput=1<245414/319742<319742 Kbps loss-rate=0 2020-01-16 16:15:45,818 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R282578K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:15:49,322 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] megabytes=33.6875 real_seconds=1.00 rate_Mbps=282.6562 tx_cpu=99 rx_cpu=2 drop=0 pkt=4312 data_loss=0.00000 2020-01-16 16:15:49,323 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] pkt-size=8192 throughput=1<289439/282578<282578 Kbps loss-rate=0 2020-01-16 16:15:49,323 DEBUG undershot, min=289439 kbps=286008 max=282578 2020-01-16 16:15:49,335 INFO { 'az_from': u'nova:pod17-node4', 'az_to': u'nova:pod17-node4', 'desc': 'VM to VM same network fixed IP (intra-node)', 'distro_id': 'Ubuntu', 'distro_version': '14.04', 'ip_from': u'192.168.1.4', 'ip_to': u'192.168.1.6', 'results': [ { 'pkt_size': 65536, 'protocol': 'TCP', 'retrans': 4, 'rtt_ms': 0.88, 'throughput_kbps': 4295286, 'tool': 'nuttcp-8.1.4'}, { 'pkt_size': 65536, 'protocol': 'TCP', 'retrans': 4, 'rtt_ms': 0.44, 'throughput_kbps': 4340348, 'tool': 'nuttcp-8.1.4'}, { 'pkt_size': 65536, 'protocol': 'TCP', 'retrans': 1, 'rtt_ms': 0.32, 'throughput_kbps': 5367587, 'tool': 'nuttcp-8.1.4'}, { 'loss_rate': 5.87, 'pkt_size': 128, 'protocol': 'UDP', 'throughput_kbps': 14753, 'tool': 'nuttcp-8.1.4'}, { 'loss_rate': 0.0, 'pkt_size': 1024, 'protocol': 'UDP', 'throughput_kbps': 2284, 'tool': 'nuttcp-8.1.4'}, { 'loss_rate': 0.0, 'pkt_size': 8192, 'protocol': 'UDP', 'throughput_kbps': 289439, 'tool': 'nuttcp-8.1.4'}, { 'protocol': 'ICMP', 'results': [ { 'packet_size': 64, 'rtt_avg_ms': '0.420', 'rtt_max_ms': '1.445', 'rtt_min_ms': '0.149', 'rtt_stddev': '0.370', 'rx_packets': '10', 'tx_packets': '10'}, { 'packet_size': 391, 'rtt_avg_ms': '0.349', 'rtt_max_ms': '0.506', 'rtt_min_ms': '0.161', 'rtt_stddev': '0.107', 'rx_packets': '10', 'tx_packets': '10'}, { 'packet_size': 1500, 'rtt_avg_ms': '0.492', 'rtt_max_ms': '1.057', 'rtt_min_ms': '0.287', 'rtt_stddev': '0.200', 'rx_packets': '10', 'tx_packets': '10'}], 'tool': 'ping'}]} No handlers could be found for logger "vmtp_file" 2020-01-16 16:15:49,336 INFO Deleting floating ip 7b6f4437-8701-414b-9a22-6cf3c2cd917c 2020-01-16 16:15:50,526 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] Floating IP 10.10.175.59 deleted 2020-01-16 16:15:50,870 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] Instance deleted 2020-01-16 16:15:50,985 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] Creating client VM... 2020-01-16 16:15:50,986 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] Starting on zone nova:pod17-node4 2020-01-16 16:15:52,256 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] VM status=BUILD, retrying 1 of 150... 2020-01-16 16:15:54,708 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] VM status=BUILD, retrying 2 of 150... 2020-01-16 16:15:57,065 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] VM status=BUILD, retrying 3 of 150... 2020-01-16 16:15:59,395 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] VM status=BUILD, retrying 4 of 150... 2020-01-16 16:16:01,733 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] VM status=BUILD, retrying 5 of 150... 2020-01-16 16:16:04,042 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] VM status=BUILD, retrying 6 of 150... 2020-01-16 16:16:09,152 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] Internal network IP: 192.168.2.5 2020-01-16 16:16:09,152 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] SSH IP: 10.10.175.34 2020-01-16 16:16:09,152 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] Setup SSH for ubuntu@10.10.175.34 2020-01-16 16:16:31,195 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] Installing nuttcp-8.1.4... 2020-01-16 16:16:31,267 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] Copying nuttcp-8.1.4 to target... 2020-01-16 16:16:31,512 INFO ============================================================ 2020-01-16 16:16:31,512 INFO Flow 2: VM to VM different network fixed IP (intra-node) 2020-01-16 16:16:41,354 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] PING 192.168.1.6 (192.168.1.6) 64(92) bytes of data. 72 bytes from 192.168.1.6: icmp_seq=1 ttl=63 time=2.50 ms 72 bytes from 192.168.1.6: icmp_seq=2 ttl=63 time=0.874 ms 72 bytes from 192.168.1.6: icmp_seq=3 ttl=63 time=0.558 ms 72 bytes from 192.168.1.6: icmp_seq=4 ttl=63 time=0.805 ms 72 bytes from 192.168.1.6: icmp_seq=5 ttl=63 time=0.634 ms 72 bytes from 192.168.1.6: icmp_seq=6 ttl=63 time=0.757 ms 72 bytes from 192.168.1.6: icmp_seq=7 ttl=63 time=0.540 ms 72 bytes from 192.168.1.6: icmp_seq=8 ttl=63 time=0.723 ms 72 bytes from 192.168.1.6: icmp_seq=9 ttl=63 time=0.554 ms 72 bytes from 192.168.1.6: icmp_seq=10 ttl=63 time=0.802 ms --- 192.168.1.6 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 8999ms rtt min/avg/max/mdev = 0.540/0.875/2.507/0.556 ms 2020-01-16 16:16:50,404 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] PING 192.168.1.6 (192.168.1.6) 391(419) bytes of data. 399 bytes from 192.168.1.6: icmp_seq=1 ttl=63 time=0.752 ms 399 bytes from 192.168.1.6: icmp_seq=2 ttl=63 time=0.620 ms 399 bytes from 192.168.1.6: icmp_seq=3 ttl=63 time=0.711 ms 399 bytes from 192.168.1.6: icmp_seq=4 ttl=63 time=0.663 ms 399 bytes from 192.168.1.6: icmp_seq=5 ttl=63 time=0.834 ms 399 bytes from 192.168.1.6: icmp_seq=6 ttl=63 time=0.598 ms 399 bytes from 192.168.1.6: icmp_seq=7 ttl=63 time=0.830 ms 399 bytes from 192.168.1.6: icmp_seq=8 ttl=63 time=0.644 ms 399 bytes from 192.168.1.6: icmp_seq=9 ttl=63 time=0.829 ms 399 bytes from 192.168.1.6: icmp_seq=10 ttl=63 time=0.680 ms --- 192.168.1.6 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 8999ms rtt min/avg/max/mdev = 0.598/0.716/0.834/0.086 ms 2020-01-16 16:16:59,466 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] PING 192.168.1.6 (192.168.1.6) 1500(1528) bytes of data. 1508 bytes from 192.168.1.6: icmp_seq=1 ttl=63 time=3.34 ms 1508 bytes from 192.168.1.6: icmp_seq=2 ttl=63 time=1.27 ms 1508 bytes from 192.168.1.6: icmp_seq=3 ttl=63 time=0.888 ms 1508 bytes from 192.168.1.6: icmp_seq=4 ttl=63 time=0.985 ms 1508 bytes from 192.168.1.6: icmp_seq=5 ttl=63 time=0.827 ms 1508 bytes from 192.168.1.6: icmp_seq=6 ttl=63 time=1.02 ms 1508 bytes from 192.168.1.6: icmp_seq=7 ttl=63 time=0.957 ms 1508 bytes from 192.168.1.6: icmp_seq=8 ttl=63 time=1.17 ms 1508 bytes from 192.168.1.6: icmp_seq=9 ttl=63 time=0.877 ms 1508 bytes from 192.168.1.6: icmp_seq=10 ttl=63 time=0.954 ms --- 192.168.1.6 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9012ms rtt min/avg/max/mdev = 0.827/1.231/3.340/0.715 ms 2020-01-16 16:16:59,467 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] Measuring TCP Throughput (packet size=65536)... 2020-01-16 16:16:59,467 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T10 -l65536 -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:17:10,179 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=3637.6222 real_seconds=10.58 rate_Mbps=2883.3043 tx_cpu=10 rx_cpu=25 retrans=932 cwnd=1671 rtt_ms=1.06 2020-01-16 16:17:10,180 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T10 -l65536 -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:17:20,361 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=2971.3125 real_seconds=10.08 rate_Mbps=2471.9404 tx_cpu=12 rx_cpu=18 retrans=2181 cwnd=1174 rtt_ms=0.63 2020-01-16 16:17:20,361 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T10 -l65536 -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:17:30,468 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=3041.0801 real_seconds=10.01 rate_Mbps=2549.1191 tx_cpu=5 rx_cpu=32 retrans=1475 cwnd=1725 rtt_ms=0.78 2020-01-16 16:17:30,468 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] Measuring UDP Throughput (packet size=128)... 2020-01-16 16:17:30,469 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R5000000K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:17:34,964 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=5.6630 real_seconds=1.66 rate_Mbps=28.6377 tx_cpu=3 rx_cpu=7 drop=1022 pkt=47414 data_loss=2.15626 2020-01-16 16:17:34,964 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=128 throughput=1<29325/5000000<10000000 Kbps loss-rate=2 2020-01-16 16:17:34,965 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R87975K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:17:38,486 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=2.5774 real_seconds=1.19 rate_Mbps=18.1509 tx_cpu=1 rx_cpu=5 drop=172 pkt=21286 data_loss=0.80819 2020-01-16 16:17:38,487 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=128 throughput=1<18586/87975<87975 Kbps loss-rate=0 2020-01-16 16:17:38,487 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R53280K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:17:42,438 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=5.4056 real_seconds=1.60 rate_Mbps=28.4167 tx_cpu=4 rx_cpu=8 drop=1343 pkt=45626 data_loss=2.94456 2020-01-16 16:17:42,439 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=128 throughput=1<29098/53280<53280 Kbps loss-rate=2 2020-01-16 16:17:42,439 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R41189K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:17:45,820 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=4.5459 real_seconds=1.02 rate_Mbps=37.4873 tx_cpu=14 rx_cpu=12 drop=208 pkt=37448 data_loss=0.55564 2020-01-16 16:17:45,821 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=128 throughput=1<38386/41189<41189 Kbps loss-rate=0 2020-01-16 16:17:45,821 DEBUG undershot, min=38386 kbps=39787 max=41189 2020-01-16 16:17:45,822 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R39787K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:17:49,175 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=4.2789 real_seconds=0.97 rate_Mbps=36.8811 tx_cpu=13 rx_cpu=9 drop=456 pkt=35509 data_loss=1.28501 2020-01-16 16:17:49,175 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=128 throughput=38386<37766/39787<41189 Kbps loss-rate=1 2020-01-16 16:17:49,176 DEBUG undershot, min=39787 kbps=40488 max=41189 2020-01-16 16:17:49,176 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] Measuring UDP Throughput (packet size=1024)... 2020-01-16 16:17:49,177 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R5000000K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:17:52,534 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=10.8115 real_seconds=1.00 rate_Mbps=90.5687 tx_cpu=3 rx_cpu=2 drop=0 pkt=11071 data_loss=0.00000 2020-01-16 16:17:52,535 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=1024 throughput=1<92742/5000000<10000000 Kbps loss-rate=0 2020-01-16 16:17:52,535 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R278226K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:17:56,471 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=27.5742 real_seconds=1.58 rate_Mbps=146.7630 tx_cpu=10 rx_cpu=4 drop=0 pkt=28236 data_loss=0.00000 2020-01-16 16:17:56,472 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=1024 throughput=1<150285/278226<278226 Kbps loss-rate=0 2020-01-16 16:17:56,472 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R214255K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:18:00,719 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=15.5479 real_seconds=1.63 rate_Mbps=80.0742 tx_cpu=92 rx_cpu=4 drop=0 pkt=15921 data_loss=0.00000 2020-01-16 16:18:00,720 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=1024 throughput=1<81995/214255<214255 Kbps loss-rate=0 2020-01-16 16:18:00,720 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R148125K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:18:04,452 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=10.4561 real_seconds=1.38 rate_Mbps=63.5262 tx_cpu=43 rx_cpu=3 drop=44 pkt=10751 data_loss=0.40861 2020-01-16 16:18:04,453 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=1024 throughput=1<65050/148125<148125 Kbps loss-rate=0 2020-01-16 16:18:04,453 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R106587K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:18:08,455 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=11.9580 real_seconds=1.65 rate_Mbps=60.6215 tx_cpu=99 rx_cpu=4 drop=0 pkt=12245 data_loss=0.00000 2020-01-16 16:18:08,455 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=1024 throughput=1<62076/106587<106587 Kbps loss-rate=0 2020-01-16 16:18:08,456 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R84331K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:18:11,924 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=9.1689 real_seconds=1.11 rate_Mbps=69.2436 tx_cpu=99 rx_cpu=3 drop=0 pkt=9389 data_loss=0.00000 2020-01-16 16:18:11,924 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=1024 throughput=1<70905/84331<84331 Kbps loss-rate=0 2020-01-16 16:18:11,924 DEBUG undershot, min=70905 kbps=77618 max=84331 2020-01-16 16:18:11,925 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R77618K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:18:15,620 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=9.2529 real_seconds=1.00 rate_Mbps=77.6083 tx_cpu=99 rx_cpu=5 drop=0 pkt=9475 data_loss=0.00000 2020-01-16 16:18:15,620 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=1024 throughput=70905<79470/77618<84331 Kbps loss-rate=0 2020-01-16 16:18:15,621 DEBUG undershot, min=79470 kbps=81900 max=84331 2020-01-16 16:18:15,621 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R81900K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:18:19,976 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=9.7627 real_seconds=1.00 rate_Mbps=81.8983 tx_cpu=99 rx_cpu=4 drop=0 pkt=9997 data_loss=0.00000 2020-01-16 16:18:19,977 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=1024 throughput=79470<83863/81900<84331 Kbps loss-rate=0 2020-01-16 16:18:19,977 DEBUG undershot, min=83863 kbps=84097 max=84331 2020-01-16 16:18:19,977 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] Measuring UDP Throughput (packet size=8192)... 2020-01-16 16:18:19,978 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R5000000K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:18:23,419 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=113.1484 real_seconds=1.01 rate_Mbps=943.1594 tx_cpu=5 rx_cpu=8 drop=893 pkt=15376 data_loss=5.80778 2020-01-16 16:18:23,420 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=8192 throughput=1<965795/5000000<10000000 Kbps loss-rate=5 2020-01-16 16:18:23,420 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R2897385K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:18:27,343 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=38.2578 real_seconds=0.80 rate_Mbps=401.1281 tx_cpu=23 rx_cpu=3 drop=954 pkt=5851 data_loss=16.30486 2020-01-16 16:18:27,344 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=8192 throughput=1<410755/2897385<2897385 Kbps loss-rate=16 2020-01-16 16:18:27,344 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R1232265K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:18:30,969 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=28.0703 real_seconds=1.00 rate_Mbps=235.1407 tx_cpu=81 rx_cpu=2 drop=640 pkt=4233 data_loss=15.11931 2020-01-16 16:18:30,970 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=8192 throughput=1<240784/1232265<1232265 Kbps loss-rate=15 2020-01-16 16:18:30,970 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R722352K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:18:34,958 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=33.8281 real_seconds=1.12 rate_Mbps=254.0842 tx_cpu=91 rx_cpu=1 drop=61 pkt=4391 data_loss=1.38931 2020-01-16 16:18:34,958 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=8192 throughput=1<260182/722352<722352 Kbps loss-rate=1 2020-01-16 16:18:34,959 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R491267K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:18:38,452 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=24.0078 real_seconds=1.13 rate_Mbps=177.5888 tx_cpu=99 rx_cpu=1 drop=0 pkt=3073 data_loss=0.00000 2020-01-16 16:18:38,452 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=8192 throughput=1<181850/491267<491267 Kbps loss-rate=0 2020-01-16 16:18:38,453 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R336558K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:18:42,454 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=36.9609 real_seconds=1.65 rate_Mbps=188.1396 tx_cpu=100 rx_cpu=2 drop=0 pkt=4731 data_loss=0.00000 2020-01-16 16:18:42,454 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=8192 throughput=1<192654/336558<336558 Kbps loss-rate=0 2020-01-16 16:18:42,455 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R264606K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:18:46,855 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=28.8984 real_seconds=1.65 rate_Mbps=147.0399 tx_cpu=100 rx_cpu=1 drop=0 pkt=3699 data_loss=0.00000 2020-01-16 16:18:46,855 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=8192 throughput=1<150568/264606<264606 Kbps loss-rate=0 2020-01-16 16:18:46,856 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R207587K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:18:50,453 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=13.3516 real_seconds=1.26 rate_Mbps=88.5385 tx_cpu=100 rx_cpu=1 drop=0 pkt=1709 data_loss=0.00000 2020-01-16 16:18:50,453 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=8192 throughput=1<90663/207587<207587 Kbps loss-rate=0 2020-01-16 16:18:50,454 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R149125K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:18:54,463 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=16.3203 real_seconds=1.65 rate_Mbps=82.7537 tx_cpu=99 rx_cpu=0 drop=0 pkt=2089 data_loss=0.00000 2020-01-16 16:18:54,463 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=8192 throughput=1<84739/149125<149125 Kbps loss-rate=0 2020-01-16 16:18:54,464 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R116932K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:18:58,344 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=13.0234 real_seconds=1.55 rate_Mbps=70.5536 tx_cpu=99 rx_cpu=0 drop=0 pkt=1667 data_loss=0.00000 2020-01-16 16:18:58,344 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=8192 throughput=1<72246/116932<116932 Kbps loss-rate=0 2020-01-16 16:18:58,345 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R94589K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:19:01,759 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=11.2812 real_seconds=1.00 rate_Mbps=94.5784 tx_cpu=99 rx_cpu=0 drop=0 pkt=1444 data_loss=0.00000 2020-01-16 16:19:01,760 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=8192 throughput=1<96848/94589<94589 Kbps loss-rate=0 2020-01-16 16:19:01,760 DEBUG undershot, min=96848 kbps=95718 max=94589 2020-01-16 16:19:01,771 INFO { 'az_from': u'nova:pod17-node4', 'az_to': u'nova:pod17-node4', 'desc': 'VM to VM different network fixed IP (intra-node)', 'distro_id': 'Ubuntu', 'distro_version': '14.04', 'ip_from': u'192.168.2.5', 'ip_to': u'192.168.1.6', 'results': [ { 'pkt_size': 65536, 'protocol': 'TCP', 'retrans': 932, 'rtt_ms': 1.06, 'throughput_kbps': 2952503, 'tool': 'nuttcp-8.1.4'}, { 'pkt_size': 65536, 'protocol': 'TCP', 'retrans': 2181, 'rtt_ms': 0.63, 'throughput_kbps': 2531266, 'tool': 'nuttcp-8.1.4'}, { 'pkt_size': 65536, 'protocol': 'TCP', 'retrans': 1475, 'rtt_ms': 0.78, 'throughput_kbps': 2610297, 'tool': 'nuttcp-8.1.4'}, { 'loss_rate': 1.28, 'pkt_size': 128, 'protocol': 'UDP', 'throughput_kbps': 37766, 'tool': 'nuttcp-8.1.4'}, { 'loss_rate': 0.0, 'pkt_size': 1024, 'protocol': 'UDP', 'throughput_kbps': 83863, 'tool': 'nuttcp-8.1.4'}, { 'loss_rate': 0.0, 'pkt_size': 8192, 'protocol': 'UDP', 'throughput_kbps': 96848, 'tool': 'nuttcp-8.1.4'}, { 'protocol': 'ICMP', 'results': [ { 'packet_size': 64, 'rtt_avg_ms': '0.875', 'rtt_max_ms': '2.507', 'rtt_min_ms': '0.540', 'rtt_stddev': '0.556', 'rx_packets': '10', 'tx_packets': '10'}, { 'packet_size': 391, 'rtt_avg_ms': '0.716', 'rtt_max_ms': '0.834', 'rtt_min_ms': '0.598', 'rtt_stddev': '0.086', 'rx_packets': '10', 'tx_packets': '10'}, { 'packet_size': 1500, 'rtt_avg_ms': '1.231', 'rtt_max_ms': '3.340', 'rtt_min_ms': '0.827', 'rtt_stddev': '0.715', 'rx_packets': '10', 'tx_packets': '10'}], 'tool': 'ping'}]} 2020-01-16 16:19:01,773 INFO ============================================================ 2020-01-16 16:19:01,773 INFO Flow 3: VM to VM different network floating IP (intra-node) 2020-01-16 16:19:10,841 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] PING 10.10.175.33 (10.10.175.33) 64(92) bytes of data. 72 bytes from 10.10.175.33: icmp_seq=1 ttl=63 time=0.701 ms 72 bytes from 10.10.175.33: icmp_seq=2 ttl=63 time=0.743 ms 72 bytes from 10.10.175.33: icmp_seq=3 ttl=63 time=0.584 ms 72 bytes from 10.10.175.33: icmp_seq=4 ttl=63 time=0.750 ms 72 bytes from 10.10.175.33: icmp_seq=5 ttl=63 time=0.473 ms 72 bytes from 10.10.175.33: icmp_seq=6 ttl=63 time=0.685 ms 72 bytes from 10.10.175.33: icmp_seq=7 ttl=63 time=0.582 ms 72 bytes from 10.10.175.33: icmp_seq=8 ttl=63 time=0.614 ms 72 bytes from 10.10.175.33: icmp_seq=9 ttl=63 time=0.560 ms 72 bytes from 10.10.175.33: icmp_seq=10 ttl=63 time=0.716 ms --- 10.10.175.33 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 8997ms rtt min/avg/max/mdev = 0.473/0.640/0.750/0.092 ms 2020-01-16 16:19:20,074 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] PING 10.10.175.33 (10.10.175.33) 391(419) bytes of data. 399 bytes from 10.10.175.33: icmp_seq=1 ttl=63 time=0.652 ms 399 bytes from 10.10.175.33: icmp_seq=2 ttl=63 time=0.568 ms 399 bytes from 10.10.175.33: icmp_seq=3 ttl=63 time=0.742 ms 399 bytes from 10.10.175.33: icmp_seq=4 ttl=63 time=0.542 ms 399 bytes from 10.10.175.33: icmp_seq=5 ttl=63 time=0.958 ms 399 bytes from 10.10.175.33: icmp_seq=6 ttl=63 time=0.537 ms 399 bytes from 10.10.175.33: icmp_seq=7 ttl=63 time=0.775 ms 399 bytes from 10.10.175.33: icmp_seq=8 ttl=63 time=28.0 ms 399 bytes from 10.10.175.33: icmp_seq=9 ttl=63 time=0.849 ms 399 bytes from 10.10.175.33: icmp_seq=10 ttl=63 time=0.476 ms --- 10.10.175.33 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9181ms rtt min/avg/max/mdev = 0.476/3.411/28.017/8.203 ms 2020-01-16 16:19:29,123 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] PING 10.10.175.33 (10.10.175.33) 1500(1528) bytes of data. 1508 bytes from 10.10.175.33: icmp_seq=1 ttl=63 time=3.12 ms 1508 bytes from 10.10.175.33: icmp_seq=2 ttl=63 time=1.21 ms 1508 bytes from 10.10.175.33: icmp_seq=3 ttl=63 time=0.645 ms 1508 bytes from 10.10.175.33: icmp_seq=4 ttl=63 time=0.889 ms 1508 bytes from 10.10.175.33: icmp_seq=5 ttl=63 time=0.588 ms 1508 bytes from 10.10.175.33: icmp_seq=6 ttl=63 time=1.01 ms 1508 bytes from 10.10.175.33: icmp_seq=7 ttl=63 time=0.773 ms 1508 bytes from 10.10.175.33: icmp_seq=8 ttl=63 time=0.859 ms 1508 bytes from 10.10.175.33: icmp_seq=9 ttl=63 time=0.723 ms 1508 bytes from 10.10.175.33: icmp_seq=10 ttl=63 time=0.805 ms --- 10.10.175.33 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9002ms rtt min/avg/max/mdev = 0.588/1.063/3.124/0.708 ms 2020-01-16 16:19:29,124 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] Measuring TCP Throughput (packet size=65536)... 2020-01-16 16:19:29,124 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T10 -l65536 -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:19:39,259 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=2974.2229 real_seconds=10.00 rate_Mbps=2493.7490 tx_cpu=13 rx_cpu=18 retrans=1856 cwnd=3030 rtt_ms=1.24 2020-01-16 16:19:39,260 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T10 -l65536 -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:19:49,367 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=3721.7033 real_seconds=10.01 rate_Mbps=3120.0254 tx_cpu=7 rx_cpu=19 retrans=1079 cwnd=1262 rtt_ms=0.74 2020-01-16 16:19:49,368 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T10 -l65536 -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:19:59,472 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=3546.2500 real_seconds=10.01 rate_Mbps=2973.2655 tx_cpu=12 rx_cpu=25 retrans=2457 cwnd=817 rtt_ms=0.76 2020-01-16 16:19:59,472 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] Measuring UDP Throughput (packet size=128)... 2020-01-16 16:19:59,473 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R5000000K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:20:04,378 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=6.4493 real_seconds=1.00 rate_Mbps=54.1978 tx_cpu=6 rx_cpu=10 drop=2278 pkt=55111 data_loss=4.13384 2020-01-16 16:20:04,378 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=128 throughput=1<55498/5000000<10000000 Kbps loss-rate=4 2020-01-16 16:20:04,379 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R166494K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:20:08,473 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=5.6686 real_seconds=1.67 rate_Mbps=28.5066 tx_cpu=3 rx_cpu=9 drop=3304 pkt=49741 data_loss=6.64207 2020-01-16 16:20:08,474 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=128 throughput=1<29190/166494<166494 Kbps loss-rate=6 2020-01-16 16:20:08,474 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R87570K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:20:12,475 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=5.5247 real_seconds=1.65 rate_Mbps=28.1352 tx_cpu=3 rx_cpu=8 drop=4130 pkt=49388 data_loss=8.36153 2020-01-16 16:20:12,475 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=128 throughput=1<28810/87570<87570 Kbps loss-rate=8 2020-01-16 16:20:12,476 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R58190K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:20:16,001 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=6.0321 real_seconds=1.20 rate_Mbps=42.3322 tx_cpu=8 rx_cpu=12 drop=89 pkt=49504 data_loss=0.18037 2020-01-16 16:20:16,001 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=128 throughput=1<43348/58190<58190 Kbps loss-rate=0 2020-01-16 16:20:16,002 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R50769K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:20:19,357 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=4.9139 real_seconds=1.00 rate_Mbps=41.3170 tx_cpu=18 rx_cpu=10 drop=302 pkt=40557 data_loss=0.74533 2020-01-16 16:20:19,357 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=128 throughput=1<42308/50769<50769 Kbps loss-rate=0 2020-01-16 16:20:19,357 DEBUG undershot, min=42308 kbps=46538 max=50769 2020-01-16 16:20:19,358 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R46538K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:20:22,716 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=0.7443 real_seconds=1.00 rate_Mbps=6.2219 tx_cpu=2 rx_cpu=57 drop=6250 pkt=12348 data_loss=50.62031 2020-01-16 16:20:22,717 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=128 throughput=42308<6371/46538<50769 Kbps loss-rate=50 2020-01-16 16:20:22,717 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] Measuring UDP Throughput (packet size=1024)... 2020-01-16 16:20:22,717 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R5000000K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:20:26,847 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=30.5518 real_seconds=1.39 rate_Mbps=183.7477 tx_cpu=61 rx_cpu=5 drop=32 pkt=31317 data_loss=0.10202 2020-01-16 16:20:26,848 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=1024 throughput=1<188157/5000000<10000000 Kbps loss-rate=0 2020-01-16 16:20:26,848 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R564471K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:20:30,620 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=25.6699 real_seconds=1.30 rate_Mbps=165.0319 tx_cpu=5 rx_cpu=4 drop=0 pkt=26286 data_loss=0.00000 2020-01-16 16:20:30,620 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=1024 throughput=1<168992/564471<564471 Kbps loss-rate=0 2020-01-16 16:20:30,621 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R366731K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:20:34,485 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=34.1172 real_seconds=1.53 rate_Mbps=187.0249 tx_cpu=7 rx_cpu=5 drop=64 pkt=35000 data_loss=0.18286 2020-01-16 16:20:34,486 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=1024 throughput=1<191513/366731<366731 Kbps loss-rate=0 2020-01-16 16:20:34,486 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R279122K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:20:38,455 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=29.7051 real_seconds=1.61 rate_Mbps=154.5766 tx_cpu=11 rx_cpu=5 drop=0 pkt=30418 data_loss=0.00000 2020-01-16 16:20:38,456 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=1024 throughput=1<158286/279122<279122 Kbps loss-rate=0 2020-01-16 16:20:38,456 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R218704K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:20:42,447 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=24.8213 real_seconds=1.66 rate_Mbps=125.7744 tx_cpu=22 rx_cpu=5 drop=11 pkt=25428 data_loss=0.04309 2020-01-16 16:20:42,447 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=1024 throughput=1<128792/218704<218704 Kbps loss-rate=0 2020-01-16 16:20:42,448 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R173748K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:20:45,876 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=19.6924 real_seconds=1.10 rate_Mbps=149.6891 tx_cpu=78 rx_cpu=7 drop=1 pkt=20166 data_loss=0.00508 2020-01-16 16:20:45,876 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=1024 throughput=1<153281/173748<173748 Kbps loss-rate=0 2020-01-16 16:20:45,876 DEBUG undershot, min=153281 kbps=163514 max=173748 2020-01-16 16:20:45,877 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R163514K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:20:50,011 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=19.0098 real_seconds=1.00 rate_Mbps=159.4782 tx_cpu=73 rx_cpu=4 drop=35 pkt=19501 data_loss=0.17906 2020-01-16 16:20:50,011 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=1024 throughput=153281<163305/163514<173748 Kbps loss-rate=0 2020-01-16 16:20:50,012 DEBUG undershot, min=163305 kbps=168526 max=173748 2020-01-16 16:20:50,012 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R168526K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:20:54,478 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=19.9043 real_seconds=1.01 rate_Mbps=165.9557 tx_cpu=77 rx_cpu=4 drop=123 pkt=20505 data_loss=0.59977 2020-01-16 16:20:54,479 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=1024 throughput=163305<169938/168526<173748 Kbps loss-rate=0 2020-01-16 16:20:54,479 DEBUG undershot, min=169938 kbps=171843 max=173748 2020-01-16 16:20:54,480 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] Measuring UDP Throughput (packet size=8192)... 2020-01-16 16:20:54,480 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R5000000K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:20:57,844 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=129.0000 real_seconds=1.01 rate_Mbps=1073.0790 tx_cpu=5 rx_cpu=10 drop=934 pkt=17446 data_loss=5.35368 2020-01-16 16:20:57,844 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=8192 throughput=1<1098832/5000000<10000000 Kbps loss-rate=5 2020-01-16 16:20:57,845 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R3049416K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:21:01,179 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=82.2344 real_seconds=1.00 rate_Mbps=687.3938 tx_cpu=4 rx_cpu=7 drop=655 pkt=11181 data_loss=5.85816 2020-01-16 16:21:01,180 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=8192 throughput=1<703891/3049416<3049416 Kbps loss-rate=5 2020-01-16 16:21:01,180 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R1876653K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:21:05,052 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=31.4531 real_seconds=1.01 rate_Mbps=262.1305 tx_cpu=2 rx_cpu=2 drop=198 pkt=4224 data_loss=4.68758 2020-01-16 16:21:05,052 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=8192 throughput=1<268421/1876653<1876653 Kbps loss-rate=4 2020-01-16 16:21:05,052 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R805263K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:21:08,487 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=35.6328 real_seconds=1.11 rate_Mbps=269.2980 tx_cpu=80 rx_cpu=3 drop=120 pkt=4681 data_loss=2.56356 2020-01-16 16:21:08,488 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=8192 throughput=1<275761/805263<805263 Kbps loss-rate=2 2020-01-16 16:21:08,488 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R540512K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:21:12,500 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=60.7188 real_seconds=1.67 rate_Mbps=304.4489 tx_cpu=99 rx_cpu=3 drop=64 pkt=7836 data_loss=0.81674 2020-01-16 16:21:12,501 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=8192 throughput=1<311755/540512<540512 Kbps loss-rate=0 2020-01-16 16:21:12,501 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R426133K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:21:16,498 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=47.5781 real_seconds=1.65 rate_Mbps=241.4873 tx_cpu=99 rx_cpu=2 drop=0 pkt=6090 data_loss=0.00000 2020-01-16 16:21:16,499 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=8192 throughput=1<247282/426133<426133 Kbps loss-rate=0 2020-01-16 16:21:16,499 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R336707K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:21:20,547 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=36.6016 real_seconds=1.64 rate_Mbps=186.6701 tx_cpu=100 rx_cpu=2 drop=0 pkt=4685 data_loss=0.00000 2020-01-16 16:21:20,547 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=8192 throughput=1<191150/336707<336707 Kbps loss-rate=0 2020-01-16 16:21:20,548 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R263928K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:21:24,615 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=27.2969 real_seconds=1.58 rate_Mbps=144.7631 tx_cpu=99 rx_cpu=1 drop=0 pkt=3494 data_loss=0.00000 2020-01-16 16:21:24,615 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=8192 throughput=1<148237/263928<263928 Kbps loss-rate=0 2020-01-16 16:21:24,616 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R206082K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:21:28,347 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=20.1484 real_seconds=1.40 rate_Mbps=120.8962 tx_cpu=100 rx_cpu=1 drop=0 pkt=2579 data_loss=0.00000 2020-01-16 16:21:28,347 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=8192 throughput=1<123797/206082<206082 Kbps loss-rate=0 2020-01-16 16:21:28,348 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R164939K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:21:31,986 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] megabytes=19.6641 real_seconds=1.00 rate_Mbps=164.9323 tx_cpu=99 rx_cpu=1 drop=0 pkt=2517 data_loss=0.00000 2020-01-16 16:21:31,987 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] pkt-size=8192 throughput=1<168890/164939<164939 Kbps loss-rate=0 2020-01-16 16:21:31,987 DEBUG undershot, min=168890 kbps=166914 max=164939 2020-01-16 16:21:31,999 INFO { 'az_from': u'nova:pod17-node4', 'az_to': u'nova:pod17-node4', 'desc': 'VM to VM different network floating IP (intra-node)', 'distro_id': 'Ubuntu', 'distro_version': '14.04', 'ip_from': u'192.168.2.5', 'ip_to': u'10.10.175.33', 'results': [ { 'pkt_size': 65536, 'protocol': 'TCP', 'retrans': 1856, 'rtt_ms': 1.24, 'throughput_kbps': 2553598, 'tool': 'nuttcp-8.1.4'}, { 'pkt_size': 65536, 'protocol': 'TCP', 'retrans': 1079, 'rtt_ms': 0.74, 'throughput_kbps': 3194906, 'tool': 'nuttcp-8.1.4'}, { 'pkt_size': 65536, 'protocol': 'TCP', 'retrans': 2457, 'rtt_ms': 0.76, 'throughput_kbps': 3044623, 'tool': 'nuttcp-8.1.4'}, { 'loss_rate': 50.62, 'pkt_size': 128, 'protocol': 'UDP', 'throughput_kbps': 6371, 'tool': 'nuttcp-8.1.4'}, { 'loss_rate': 0.6, 'pkt_size': 1024, 'protocol': 'UDP', 'throughput_kbps': 169938, 'tool': 'nuttcp-8.1.4'}, { 'loss_rate': 0.0, 'pkt_size': 8192, 'protocol': 'UDP', 'throughput_kbps': 168890, 'tool': 'nuttcp-8.1.4'}, { 'protocol': 'ICMP', 'results': [ { 'packet_size': 64, 'rtt_avg_ms': '0.640', 'rtt_max_ms': '0.750', 'rtt_min_ms': '0.473', 'rtt_stddev': '0.092', 'rx_packets': '10', 'tx_packets': '10'}, { 'packet_size': 391, 'rtt_avg_ms': '3.411', 'rtt_max_ms': '28.017', 'rtt_min_ms': '0.476', 'rtt_stddev': '8.203', 'rx_packets': '10', 'tx_packets': '10'}, { 'packet_size': 1500, 'rtt_avg_ms': '1.063', 'rtt_max_ms': '3.124', 'rtt_min_ms': '0.588', 'rtt_stddev': '0.708', 'rx_packets': '10', 'tx_packets': '10'}], 'tool': 'ping'}]} 2020-01-16 16:21:32,000 INFO Deleting floating ip 3b6b4b9e-8cb7-4a15-a928-c552ff846f27 2020-01-16 16:21:33,420 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] Floating IP 10.10.175.34 deleted 2020-01-16 16:21:33,781 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf2] Instance deleted 2020-01-16 16:21:33,813 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] Creating client VM... 2020-01-16 16:21:33,813 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] Starting on zone nova:pod17-node5 2020-01-16 16:21:34,994 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] VM status=BUILD, retrying 1 of 150... 2020-01-16 16:21:37,286 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] VM status=BUILD, retrying 2 of 150... 2020-01-16 16:21:39,615 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] VM status=BUILD, retrying 3 of 150... 2020-01-16 16:21:41,960 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] VM status=BUILD, retrying 4 of 150... 2020-01-16 16:21:44,280 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] VM status=BUILD, retrying 5 of 150... 2020-01-16 16:21:46,614 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] VM status=BUILD, retrying 6 of 150... 2020-01-16 16:21:48,941 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] VM status=BUILD, retrying 7 of 150... 2020-01-16 16:21:51,270 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] VM status=BUILD, retrying 8 of 150... 2020-01-16 16:21:53,738 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] VM status=BUILD, retrying 9 of 150... 2020-01-16 16:21:58,593 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] Internal network IP: 192.168.1.12 2020-01-16 16:21:58,593 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] SSH IP: 10.10.175.43 2020-01-16 16:21:58,593 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] Setup SSH for ubuntu@10.10.175.43 2020-01-16 16:22:30,595 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] Installing nuttcp-8.1.4... 2020-01-16 16:22:30,664 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] Copying nuttcp-8.1.4 to target... 2020-01-16 16:22:30,860 INFO ============================================================ 2020-01-16 16:22:30,860 INFO Flow 4: VM to VM same network fixed IP (inter-node) 2020-01-16 16:22:40,075 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] PING 192.168.1.6 (192.168.1.6) 64(92) bytes of data. 72 bytes from 192.168.1.6: icmp_seq=1 ttl=64 time=2.61 ms 72 bytes from 192.168.1.6: icmp_seq=2 ttl=64 time=0.425 ms 72 bytes from 192.168.1.6: icmp_seq=3 ttl=64 time=0.691 ms 72 bytes from 192.168.1.6: icmp_seq=4 ttl=64 time=0.507 ms 72 bytes from 192.168.1.6: icmp_seq=5 ttl=64 time=0.730 ms 72 bytes from 192.168.1.6: icmp_seq=6 ttl=64 time=0.384 ms 72 bytes from 192.168.1.6: icmp_seq=7 ttl=64 time=0.668 ms 72 bytes from 192.168.1.6: icmp_seq=8 ttl=64 time=0.403 ms 72 bytes from 192.168.1.6: icmp_seq=9 ttl=64 time=0.600 ms 72 bytes from 192.168.1.6: icmp_seq=10 ttl=64 time=0.435 ms --- 192.168.1.6 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9157ms rtt min/avg/max/mdev = 0.384/0.746/2.619/0.636 ms 2020-01-16 16:22:49,129 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] PING 192.168.1.6 (192.168.1.6) 391(419) bytes of data. 399 bytes from 192.168.1.6: icmp_seq=1 ttl=64 time=0.423 ms 399 bytes from 192.168.1.6: icmp_seq=2 ttl=64 time=0.873 ms 399 bytes from 192.168.1.6: icmp_seq=3 ttl=64 time=0.515 ms 399 bytes from 192.168.1.6: icmp_seq=4 ttl=64 time=0.654 ms 399 bytes from 192.168.1.6: icmp_seq=5 ttl=64 time=0.596 ms 399 bytes from 192.168.1.6: icmp_seq=6 ttl=64 time=0.650 ms 399 bytes from 192.168.1.6: icmp_seq=7 ttl=64 time=0.492 ms 399 bytes from 192.168.1.6: icmp_seq=8 ttl=64 time=0.665 ms 399 bytes from 192.168.1.6: icmp_seq=9 ttl=64 time=0.600 ms 399 bytes from 192.168.1.6: icmp_seq=10 ttl=64 time=0.689 ms --- 192.168.1.6 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 8999ms rtt min/avg/max/mdev = 0.423/0.615/0.873/0.121 ms 2020-01-16 16:22:58,186 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] PING 192.168.1.6 (192.168.1.6) 1500(1528) bytes of data. 1508 bytes from 192.168.1.6: icmp_seq=1 ttl=64 time=2.07 ms 1508 bytes from 192.168.1.6: icmp_seq=2 ttl=64 time=0.524 ms 1508 bytes from 192.168.1.6: icmp_seq=3 ttl=64 time=1.02 ms 1508 bytes from 192.168.1.6: icmp_seq=4 ttl=64 time=0.668 ms 1508 bytes from 192.168.1.6: icmp_seq=5 ttl=64 time=0.843 ms 1508 bytes from 192.168.1.6: icmp_seq=6 ttl=64 time=0.578 ms 1508 bytes from 192.168.1.6: icmp_seq=7 ttl=64 time=0.781 ms 1508 bytes from 192.168.1.6: icmp_seq=8 ttl=64 time=0.662 ms 1508 bytes from 192.168.1.6: icmp_seq=9 ttl=64 time=0.967 ms 1508 bytes from 192.168.1.6: icmp_seq=10 ttl=64 time=0.615 ms --- 192.168.1.6 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9003ms rtt min/avg/max/mdev = 0.524/0.873/2.070/0.428 ms 2020-01-16 16:22:58,187 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] Measuring TCP Throughput (packet size=65536)... 2020-01-16 16:22:58,188 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T10 -l65536 -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:23:08,514 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=3735.9328 real_seconds=10.20 rate_Mbps=3072.9468 tx_cpu=7 rx_cpu=11 retrans=1326 cwnd=895 rtt_ms=0.72 2020-01-16 16:23:08,514 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T10 -l65536 -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:23:18,652 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=3858.4298 real_seconds=10.01 rate_Mbps=3233.5884 tx_cpu=22 rx_cpu=11 retrans=2374 cwnd=1332 rtt_ms=0.89 2020-01-16 16:23:18,653 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T10 -l65536 -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:23:28,763 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=3537.5732 real_seconds=10.01 rate_Mbps=2965.1745 tx_cpu=12 rx_cpu=10 retrans=854 cwnd=850 rtt_ms=0.85 2020-01-16 16:23:28,763 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] Measuring UDP Throughput (packet size=128)... 2020-01-16 16:23:28,764 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R5000000K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:23:32,096 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=5.6775 real_seconds=1.00 rate_Mbps=47.6747 tx_cpu=7 rx_cpu=8 drop=39864 pkt=86374 data_loss=46.15268 2020-01-16 16:23:32,097 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] pkt-size=128 throughput=1<48818/5000000<10000000 Kbps loss-rate=46 2020-01-16 16:23:32,097 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R146454K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:23:36,060 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=8.5020 real_seconds=1.33 rate_Mbps=53.7012 tx_cpu=4 rx_cpu=11 drop=4615 pkt=74264 data_loss=6.21484 2020-01-16 16:23:36,061 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] pkt-size=128 throughput=1<54990/146454<146454 Kbps loss-rate=6 2020-01-16 16:23:36,061 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R100722K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:23:40,091 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=9.8994 real_seconds=1.63 rate_Mbps=50.9264 tx_cpu=16 rx_cpu=15 drop=10590 pkt=91686 data_loss=11.55011 2020-01-16 16:23:40,091 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] pkt-size=128 throughput=1<52148/100722<100722 Kbps loss-rate=11 2020-01-16 16:23:40,091 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R76435K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:23:44,547 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=6.1904 real_seconds=1.39 rate_Mbps=37.4917 tx_cpu=21 rx_cpu=9 drop=638 pkt=51350 data_loss=1.24276 2020-01-16 16:23:44,548 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] pkt-size=128 throughput=1<38391/76435<76435 Kbps loss-rate=1 2020-01-16 16:23:44,548 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R57413K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:23:47,884 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=4.2172 real_seconds=1.65 rate_Mbps=21.4445 tx_cpu=74 rx_cpu=7 drop=494 pkt=35041 data_loss=1.40970 2020-01-16 16:23:47,884 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] pkt-size=128 throughput=1<21959/57413<57413 Kbps loss-rate=1 2020-01-16 16:23:47,885 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R39686K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:23:51,733 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=3.2345 real_seconds=1.00 rate_Mbps=27.1219 tx_cpu=85 rx_cpu=11 drop=11977 pkt=38474 data_loss=31.12956 2020-01-16 16:23:51,733 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] pkt-size=128 throughput=1<27772/39686<39686 Kbps loss-rate=31 2020-01-16 16:23:51,734 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R33729K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:23:55,720 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=2.1830 real_seconds=1.00 rate_Mbps=18.3044 tx_cpu=93 rx_cpu=9 drop=15055 pkt=32938 data_loss=45.70732 2020-01-16 16:23:55,720 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] pkt-size=128 throughput=1<18743/33729<33729 Kbps loss-rate=45 2020-01-16 16:23:55,721 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R26236K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:23:59,385 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=1.8766 real_seconds=1.00 rate_Mbps=15.7341 tx_cpu=95 rx_cpu=4 drop=10248 pkt=25621 data_loss=39.99872 2020-01-16 16:23:59,385 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] pkt-size=128 throughput=1<16111/26236<26236 Kbps loss-rate=40 2020-01-16 16:23:59,386 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R21173K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:24:02,745 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=0.3539 real_seconds=1.00 rate_Mbps=2.9677 tx_cpu=99 rx_cpu=20 drop=17777 pkt=20677 data_loss=85.97861 2020-01-16 16:24:02,746 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] pkt-size=128 throughput=1<3038/21173<21173 Kbps loss-rate=85 2020-01-16 16:24:02,746 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R9114K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:24:06,739 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=0.4668 real_seconds=1.42 rate_Mbps=2.7590 tx_cpu=99 rx_cpu=1 drop=0 pkt=3824 data_loss=0.00000 2020-01-16 16:24:06,739 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] pkt-size=128 throughput=1<2825/9114<9114 Kbps loss-rate=0 2020-01-16 16:24:06,740 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R5969K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:24:10,215 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=0.3096 real_seconds=1.42 rate_Mbps=1.8309 tx_cpu=100 rx_cpu=1 drop=0 pkt=2536 data_loss=0.00000 2020-01-16 16:24:10,215 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] pkt-size=128 throughput=1<1874/5969<5969 Kbps loss-rate=0 2020-01-16 16:24:10,216 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R3921K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:24:14,223 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=0.4224 real_seconds=1.61 rate_Mbps=2.1948 tx_cpu=99 rx_cpu=2 drop=0 pkt=3460 data_loss=0.00000 2020-01-16 16:24:14,223 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] pkt-size=128 throughput=1<2247/3921<3921 Kbps loss-rate=0 2020-01-16 16:24:14,223 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R3084K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:24:18,210 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=0.3514 real_seconds=2.12 rate_Mbps=1.3912 tx_cpu=98 rx_cpu=3 drop=0 pkt=2879 data_loss=0.00000 2020-01-16 16:24:18,211 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] pkt-size=128 throughput=1<1424/3084<3084 Kbps loss-rate=0 2020-01-16 16:24:18,211 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R2254K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:24:22,227 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=0.2610 real_seconds=2.15 rate_Mbps=1.0187 tx_cpu=99 rx_cpu=1 drop=0 pkt=2138 data_loss=0.00000 2020-01-16 16:24:22,227 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] pkt-size=128 throughput=1<1043/2254<2254 Kbps loss-rate=0 2020-01-16 16:24:22,227 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R1648K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:24:26,206 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=0.1820 real_seconds=1.62 rate_Mbps=0.9419 tx_cpu=98 rx_cpu=1 drop=0 pkt=1491 data_loss=0.00000 2020-01-16 16:24:26,207 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] pkt-size=128 throughput=1<964/1648<1648 Kbps loss-rate=0 2020-01-16 16:24:26,207 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R1306K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:24:30,223 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=0.1516 real_seconds=1.68 rate_Mbps=0.7549 tx_cpu=98 rx_cpu=1 drop=0 pkt=1242 data_loss=0.00000 2020-01-16 16:24:30,224 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] pkt-size=128 throughput=1<773/1306<1306 Kbps loss-rate=0 2020-01-16 16:24:30,224 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R1039K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:24:33,596 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=0.1150 real_seconds=1.01 rate_Mbps=0.9526 tx_cpu=99 rx_cpu=1 drop=0 pkt=942 data_loss=0.00000 2020-01-16 16:24:33,597 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] pkt-size=128 throughput=1<975/1039<1039 Kbps loss-rate=0 2020-01-16 16:24:33,597 DEBUG undershot, min=975 kbps=1007 max=1039 2020-01-16 16:24:33,597 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R1007K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:24:36,984 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=0.1201 real_seconds=1.00 rate_Mbps=1.0063 tx_cpu=99 rx_cpu=1 drop=0 pkt=984 data_loss=0.00000 2020-01-16 16:24:36,984 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] pkt-size=128 throughput=975<1030/1007<1039 Kbps loss-rate=0 2020-01-16 16:24:36,985 DEBUG undershot, min=1030 kbps=1034 max=1039 2020-01-16 16:24:36,985 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] Measuring UDP Throughput (packet size=1024)... 2020-01-16 16:24:36,985 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R5000000K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:24:40,718 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=13.9590 real_seconds=1.00 rate_Mbps=116.9498 tx_cpu=8 rx_cpu=1 drop=14334 pkt=28628 data_loss=50.06975 2020-01-16 16:24:40,718 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] pkt-size=1024 throughput=1<119756/5000000<10000000 Kbps loss-rate=50 2020-01-16 16:24:40,719 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R359268K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:24:44,219 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=19.6816 real_seconds=1.16 rate_Mbps=142.3688 tx_cpu=88 rx_cpu=3 drop=45 pkt=20199 data_loss=0.22306 2020-01-16 16:24:44,219 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] pkt-size=1024 throughput=1<145785/359268<359268 Kbps loss-rate=0 2020-01-16 16:24:44,220 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R252526K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:24:48,222 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=29.0488 real_seconds=1.98 rate_Mbps=122.9472 tx_cpu=98 rx_cpu=5 drop=0 pkt=29746 data_loss=0.00000 2020-01-16 16:24:48,223 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] pkt-size=1024 throughput=1<125897/252526<252526 Kbps loss-rate=0 2020-01-16 16:24:48,224 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R189211K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:24:52,232 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=21.0801 real_seconds=1.94 rate_Mbps=91.1379 tx_cpu=98 rx_cpu=5 drop=0 pkt=21586 data_loss=0.00000 2020-01-16 16:24:52,232 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] pkt-size=1024 throughput=1<93325/189211<189211 Kbps loss-rate=0 2020-01-16 16:24:52,233 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R141268K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:24:56,116 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=15.6016 real_seconds=1.93 rate_Mbps=67.6414 tx_cpu=99 rx_cpu=4 drop=0 pkt=15976 data_loss=0.00000 2020-01-16 16:24:56,117 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] pkt-size=1024 throughput=1<69264/141268<141268 Kbps loss-rate=0 2020-01-16 16:24:56,117 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R105266K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:24:59,733 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=12.4863 real_seconds=1.00 rate_Mbps=104.6875 tx_cpu=99 rx_cpu=3 drop=64 pkt=12850 data_loss=0.49806 2020-01-16 16:24:59,733 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] pkt-size=1024 throughput=1<107200/105266<105266 Kbps loss-rate=0 2020-01-16 16:24:59,734 DEBUG undershot, min=107200 kbps=106233 max=105266 2020-01-16 16:24:59,734 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] Measuring UDP Throughput (packet size=8192)... 2020-01-16 16:24:59,734 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R5000000K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:25:03,091 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=141.2109 real_seconds=1.00 rate_Mbps=1180.8118 tx_cpu=19 rx_cpu=13 drop=12527 pkt=30602 data_loss=40.93524 2020-01-16 16:25:03,092 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] pkt-size=8192 throughput=1<1209151/5000000<10000000 Kbps loss-rate=40 2020-01-16 16:25:03,092 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R3104575K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:25:06,439 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=18.1328 real_seconds=1.00 rate_Mbps=152.0460 tx_cpu=1 rx_cpu=6 drop=3669 pkt=5990 data_loss=61.25213 2020-01-16 16:25:06,439 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] pkt-size=8192 throughput=1<155695/3104575<3104575 Kbps loss-rate=61 2020-01-16 16:25:06,440 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R467085K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:25:10,226 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=41.4141 real_seconds=1.71 rate_Mbps=203.6262 tx_cpu=98 rx_cpu=2 drop=0 pkt=5301 data_loss=0.00000 2020-01-16 16:25:10,226 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] pkt-size=8192 throughput=1<208513/467085<467085 Kbps loss-rate=0 2020-01-16 16:25:10,227 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R337799K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:25:14,229 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=36.1016 real_seconds=1.61 rate_Mbps=188.3124 tx_cpu=98 rx_cpu=2 drop=0 pkt=4621 data_loss=0.00000 2020-01-16 16:25:14,229 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] pkt-size=8192 throughput=1<192831/337799<337799 Kbps loss-rate=0 2020-01-16 16:25:14,230 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R265315K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:25:18,221 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=29.4453 real_seconds=2.09 rate_Mbps=118.3492 tx_cpu=99 rx_cpu=3 drop=1 pkt=3770 data_loss=0.02648 2020-01-16 16:25:18,222 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] pkt-size=8192 throughput=1<121189/265315<265315 Kbps loss-rate=0 2020-01-16 16:25:18,223 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R193252K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:25:22,232 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=21.4844 real_seconds=2.05 rate_Mbps=87.9605 tx_cpu=98 rx_cpu=1 drop=18 pkt=2768 data_loss=0.65017 2020-01-16 16:25:22,233 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] pkt-size=8192 throughput=1<90071/193252<193252 Kbps loss-rate=0 2020-01-16 16:25:22,233 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R141661K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:25:26,736 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=15.5625 real_seconds=2.07 rate_Mbps=63.0600 tx_cpu=98 rx_cpu=2 drop=0 pkt=1992 data_loss=0.00000 2020-01-16 16:25:26,736 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] pkt-size=8192 throughput=1<64573/141661<141661 Kbps loss-rate=0 2020-01-16 16:25:26,737 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R103117K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:25:30,237 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=5.4922 real_seconds=1.17 rate_Mbps=39.5382 tx_cpu=99 rx_cpu=1 drop=0 pkt=703 data_loss=0.00000 2020-01-16 16:25:30,238 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] pkt-size=8192 throughput=1<40487/103117<103117 Kbps loss-rate=0 2020-01-16 16:25:30,238 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R71802K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:25:34,411 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=7.8828 real_seconds=2.07 rate_Mbps=31.8996 tx_cpu=99 rx_cpu=1 drop=0 pkt=1009 data_loss=0.00000 2020-01-16 16:25:34,412 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] pkt-size=8192 throughput=1<32665/71802<71802 Kbps loss-rate=0 2020-01-16 16:25:34,412 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R52233K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:25:38,245 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=4.6641 real_seconds=1.48 rate_Mbps=26.5037 tx_cpu=99 rx_cpu=1 drop=0 pkt=597 data_loss=0.00000 2020-01-16 16:25:38,246 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] pkt-size=8192 throughput=1<27139/52233<52233 Kbps loss-rate=0 2020-01-16 16:25:38,246 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R39686K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:25:42,547 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=4.4609 real_seconds=2.07 rate_Mbps=18.0932 tx_cpu=99 rx_cpu=0 drop=0 pkt=571 data_loss=0.00000 2020-01-16 16:25:42,548 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] pkt-size=8192 throughput=1<18527/39686<39686 Kbps loss-rate=0 2020-01-16 16:25:42,548 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R29106K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:25:46,213 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=2.1328 real_seconds=1.72 rate_Mbps=10.4176 tx_cpu=99 rx_cpu=0 drop=0 pkt=273 data_loss=0.00000 2020-01-16 16:25:46,214 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] pkt-size=8192 throughput=1<10667/29106<29106 Kbps loss-rate=0 2020-01-16 16:25:46,214 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R19886K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:25:50,742 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=2.2734 real_seconds=1.73 rate_Mbps=10.9919 tx_cpu=99 rx_cpu=0 drop=0 pkt=291 data_loss=0.00000 2020-01-16 16:25:50,743 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] pkt-size=8192 throughput=1<11255/19886<19886 Kbps loss-rate=0 2020-01-16 16:25:50,743 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R15570K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:25:54,251 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=0.7812 real_seconds=1.25 rate_Mbps=5.2637 tx_cpu=99 rx_cpu=0 drop=0 pkt=100 data_loss=0.00000 2020-01-16 16:25:54,251 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] pkt-size=8192 throughput=1<5390/15570<15570 Kbps loss-rate=0 2020-01-16 16:25:54,252 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R10480K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:25:58,036 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=1.1406 real_seconds=1.74 rate_Mbps=5.5146 tx_cpu=99 rx_cpu=0 drop=0 pkt=146 data_loss=0.00000 2020-01-16 16:25:58,037 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] pkt-size=8192 throughput=1<5646/10480<10480 Kbps loss-rate=0 2020-01-16 16:25:58,037 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R8063K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:26:01,375 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] megabytes=0.9688 real_seconds=1.01 rate_Mbps=8.0564 tx_cpu=99 rx_cpu=0 drop=0 pkt=124 data_loss=0.00000 2020-01-16 16:26:01,376 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] pkt-size=8192 throughput=1<8249/8063<8063 Kbps loss-rate=0 2020-01-16 16:26:01,376 DEBUG undershot, min=8249 kbps=8156 max=8063 2020-01-16 16:26:01,388 INFO { 'az_from': u'nova:pod17-node5', 'az_to': u'nova:pod17-node4', 'desc': 'VM to VM same network fixed IP (inter-node)', 'distro_id': 'Ubuntu', 'distro_version': '14.04', 'ip_from': u'192.168.1.12', 'ip_to': u'192.168.1.6', 'results': [ { 'pkt_size': 65536, 'protocol': 'TCP', 'retrans': 1326, 'rtt_ms': 0.72, 'throughput_kbps': 3146697, 'tool': 'nuttcp-8.1.4'}, { 'pkt_size': 65536, 'protocol': 'TCP', 'retrans': 2374, 'rtt_ms': 0.89, 'throughput_kbps': 3311194, 'tool': 'nuttcp-8.1.4'}, { 'pkt_size': 65536, 'protocol': 'TCP', 'retrans': 854, 'rtt_ms': 0.85, 'throughput_kbps': 3036338, 'tool': 'nuttcp-8.1.4'}, { 'loss_rate': 0.0, 'pkt_size': 128, 'protocol': 'UDP', 'throughput_kbps': 1030, 'tool': 'nuttcp-8.1.4'}, { 'loss_rate': 0.5, 'pkt_size': 1024, 'protocol': 'UDP', 'throughput_kbps': 107200, 'tool': 'nuttcp-8.1.4'}, { 'loss_rate': 0.0, 'pkt_size': 8192, 'protocol': 'UDP', 'throughput_kbps': 8249, 'tool': 'nuttcp-8.1.4'}, { 'protocol': 'ICMP', 'results': [ { 'packet_size': 64, 'rtt_avg_ms': '0.746', 'rtt_max_ms': '2.619', 'rtt_min_ms': '0.384', 'rtt_stddev': '0.636', 'rx_packets': '10', 'tx_packets': '10'}, { 'packet_size': 391, 'rtt_avg_ms': '0.615', 'rtt_max_ms': '0.873', 'rtt_min_ms': '0.423', 'rtt_stddev': '0.121', 'rx_packets': '10', 'tx_packets': '10'}, { 'packet_size': 1500, 'rtt_avg_ms': '0.873', 'rtt_max_ms': '2.070', 'rtt_min_ms': '0.524', 'rtt_stddev': '0.428', 'rx_packets': '10', 'tx_packets': '10'}], 'tool': 'ping'}]} 2020-01-16 16:26:01,389 INFO Deleting floating ip 79f8b7fd-f8fb-4d01-817c-8fab3ab348b2 2020-01-16 16:26:02,715 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] Floating IP 10.10.175.43 deleted 2020-01-16 16:26:03,027 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf3] Instance deleted 2020-01-16 16:26:03,142 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] Creating client VM... 2020-01-16 16:26:03,142 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] Starting on zone nova:pod17-node5 2020-01-16 16:26:04,106 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] VM status=BUILD, retrying 1 of 150... 2020-01-16 16:26:06,341 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] VM status=BUILD, retrying 2 of 150... 2020-01-16 16:26:08,659 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] VM status=BUILD, retrying 3 of 150... 2020-01-16 16:26:11,054 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] VM status=BUILD, retrying 4 of 150... 2020-01-16 16:26:13,382 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] VM status=BUILD, retrying 5 of 150... 2020-01-16 16:26:15,737 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] VM status=BUILD, retrying 6 of 150... 2020-01-16 16:26:18,074 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] VM status=BUILD, retrying 7 of 150... 2020-01-16 16:26:23,106 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] Internal network IP: 192.168.2.28 2020-01-16 16:26:23,106 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] SSH IP: 10.10.175.41 2020-01-16 16:26:23,106 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] Setup SSH for ubuntu@10.10.175.41 2020-01-16 16:26:50,472 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] Installing nuttcp-8.1.4... 2020-01-16 16:26:50,566 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] Copying nuttcp-8.1.4 to target... 2020-01-16 16:26:50,758 INFO ============================================================ 2020-01-16 16:26:50,759 INFO Flow 5: VM to VM different network fixed IP (inter-node) 2020-01-16 16:26:59,849 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] PING 192.168.1.6 (192.168.1.6) 64(92) bytes of data. 72 bytes from 192.168.1.6: icmp_seq=1 ttl=63 time=2.74 ms 72 bytes from 192.168.1.6: icmp_seq=2 ttl=63 time=0.904 ms 72 bytes from 192.168.1.6: icmp_seq=3 ttl=63 time=1.02 ms 72 bytes from 192.168.1.6: icmp_seq=4 ttl=63 time=0.700 ms 72 bytes from 192.168.1.6: icmp_seq=5 ttl=63 time=1.10 ms 72 bytes from 192.168.1.6: icmp_seq=6 ttl=63 time=0.781 ms 72 bytes from 192.168.1.6: icmp_seq=7 ttl=63 time=0.924 ms 72 bytes from 192.168.1.6: icmp_seq=8 ttl=63 time=0.725 ms 72 bytes from 192.168.1.6: icmp_seq=9 ttl=63 time=0.946 ms 72 bytes from 192.168.1.6: icmp_seq=10 ttl=63 time=0.681 ms --- 192.168.1.6 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9006ms rtt min/avg/max/mdev = 0.681/1.053/2.745/0.580 ms 2020-01-16 16:27:08,903 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] PING 192.168.1.6 (192.168.1.6) 391(419) bytes of data. 399 bytes from 192.168.1.6: icmp_seq=1 ttl=63 time=0.704 ms 399 bytes from 192.168.1.6: icmp_seq=2 ttl=63 time=1.04 ms 399 bytes from 192.168.1.6: icmp_seq=3 ttl=63 time=0.847 ms 399 bytes from 192.168.1.6: icmp_seq=4 ttl=63 time=0.986 ms 399 bytes from 192.168.1.6: icmp_seq=5 ttl=63 time=0.708 ms 399 bytes from 192.168.1.6: icmp_seq=6 ttl=63 time=0.904 ms 399 bytes from 192.168.1.6: icmp_seq=7 ttl=63 time=0.694 ms 399 bytes from 192.168.1.6: icmp_seq=8 ttl=63 time=0.964 ms 399 bytes from 192.168.1.6: icmp_seq=9 ttl=63 time=27.0 ms 399 bytes from 192.168.1.6: icmp_seq=10 ttl=63 time=1.11 ms --- 192.168.1.6 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9004ms rtt min/avg/max/mdev = 0.694/3.505/27.092/7.863 ms 2020-01-16 16:27:17,962 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] PING 192.168.1.6 (192.168.1.6) 1500(1528) bytes of data. 1508 bytes from 192.168.1.6: icmp_seq=1 ttl=63 time=3.47 ms 1508 bytes from 192.168.1.6: icmp_seq=2 ttl=63 time=0.719 ms 1508 bytes from 192.168.1.6: icmp_seq=3 ttl=63 time=1.33 ms 1508 bytes from 192.168.1.6: icmp_seq=4 ttl=63 time=0.957 ms 1508 bytes from 192.168.1.6: icmp_seq=5 ttl=63 time=1.29 ms 1508 bytes from 192.168.1.6: icmp_seq=6 ttl=63 time=0.872 ms 1508 bytes from 192.168.1.6: icmp_seq=7 ttl=63 time=1.28 ms 1508 bytes from 192.168.1.6: icmp_seq=8 ttl=63 time=0.925 ms 1508 bytes from 192.168.1.6: icmp_seq=9 ttl=63 time=1.19 ms 2020-01-16 16:27:17,963 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] Measuring TCP Throughput (packet size=65536)... 2020-01-16 16:27:17,963 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T10 -l65536 -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:27:28,544 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=4083.4525 real_seconds=10.48 rate_Mbps=3268.9817 tx_cpu=7 rx_cpu=16 retrans=3981 cwnd=764 rtt_ms=0.80 2020-01-16 16:27:28,545 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T10 -l65536 -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:27:38,651 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=3923.7744 real_seconds=10.00 rate_Mbps=3290.1887 tx_cpu=8 rx_cpu=19 retrans=3941 cwnd=547 rtt_ms=1.02 2020-01-16 16:27:38,652 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T10 -l65536 -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:27:48,757 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=4128.4031 real_seconds=10.00 rate_Mbps=3462.1159 tx_cpu=8 rx_cpu=13 retrans=1604 cwnd=1740 rtt_ms=1.05 2020-01-16 16:27:48,757 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] Measuring UDP Throughput (packet size=128)... 2020-01-16 16:27:48,758 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R5000000K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:27:52,241 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=5.0936 real_seconds=1.12 rate_Mbps=38.0248 tx_cpu=8 rx_cpu=6 drop=15373 pkt=57100 data_loss=26.92319 2020-01-16 16:27:52,241 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=128 throughput=1<38937/5000000<10000000 Kbps loss-rate=26 2020-01-16 16:27:52,242 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R116811K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:27:56,226 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=12.0571 real_seconds=1.63 rate_Mbps=62.2367 tx_cpu=55 rx_cpu=12 drop=7243 pkt=106014 data_loss=6.83167 2020-01-16 16:27:56,226 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=128 throughput=1<63730/116811<116811 Kbps loss-rate=6 2020-01-16 16:27:56,226 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R90270K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:27:59,950 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=10.3557 real_seconds=1.39 rate_Mbps=62.4526 tx_cpu=69 rx_cpu=11 drop=1130 pkt=85964 data_loss=1.31507 2020-01-16 16:27:59,950 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=128 throughput=1<63951/90270<90270 Kbps loss-rate=1 2020-01-16 16:27:59,951 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R77110K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:28:03,301 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=6.3691 real_seconds=1.00 rate_Mbps=53.6205 tx_cpu=99 rx_cpu=19 drop=23128 pkt=75303 data_loss=30.71266 2020-01-16 16:28:03,301 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=128 throughput=1<54907/77110<77110 Kbps loss-rate=30 2020-01-16 16:28:03,301 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R66008K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:28:06,637 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=0.3879 real_seconds=1.00 rate_Mbps=3.2525 tx_cpu=11 rx_cpu=7 drop=56041 pkt=59218 data_loss=94.63396 2020-01-16 16:28:06,637 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=128 throughput=1<3330/66008<66008 Kbps loss-rate=94 2020-01-16 16:28:06,638 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R9990K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:28:10,448 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=0.6482 real_seconds=1.45 rate_Mbps=3.7388 tx_cpu=39 rx_cpu=2 drop=431 pkt=5741 data_loss=7.50571 2020-01-16 16:28:10,448 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=128 throughput=1<3828/9990<9990 Kbps loss-rate=7 2020-01-16 16:28:10,449 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R6909K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:28:13,959 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=0.6805 real_seconds=1.19 rate_Mbps=4.8135 tx_cpu=70 rx_cpu=2 drop=0 pkt=5575 data_loss=0.00000 2020-01-16 16:28:13,959 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=128 throughput=1<4929/6909<6909 Kbps loss-rate=0 2020-01-16 16:28:13,960 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R5919K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:28:17,317 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=0.6814 real_seconds=1.00 rate_Mbps=5.7163 tx_cpu=99 rx_cpu=0 drop=199 pkt=5781 data_loss=3.44339 2020-01-16 16:28:17,318 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=128 throughput=1<5853/5919<5919 Kbps loss-rate=3 2020-01-16 16:28:17,318 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] Measuring UDP Throughput (packet size=1024)... 2020-01-16 16:28:17,319 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R5000000K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:28:20,678 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=10.2168 real_seconds=1.00 rate_Mbps=85.3025 tx_cpu=21 rx_cpu=3 drop=49215 pkt=59677 data_loss=82.46895 2020-01-16 16:28:20,678 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=1024 throughput=1<87349/5000000<10000000 Kbps loss-rate=82 2020-01-16 16:28:20,679 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R262047K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:28:24,277 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=17.5586 real_seconds=1.26 rate_Mbps=116.5734 tx_cpu=42 rx_cpu=3 drop=166 pkt=18146 data_loss=0.91475 2020-01-16 16:28:24,278 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=1024 throughput=1<119371/262047<262047 Kbps loss-rate=0 2020-01-16 16:28:24,278 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R190709K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:28:27,973 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=20.4434 real_seconds=1.34 rate_Mbps=128.1237 tx_cpu=67 rx_cpu=5 drop=239 pkt=21173 data_loss=1.12880 2020-01-16 16:28:27,974 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=1024 throughput=1<131198/190709<190709 Kbps loss-rate=1 2020-01-16 16:28:27,974 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R160953K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:28:31,309 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=15.4814 real_seconds=1.00 rate_Mbps=129.8858 tx_cpu=99 rx_cpu=4 drop=3795 pkt=19648 data_loss=19.31518 2020-01-16 16:28:31,309 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=1024 throughput=1<133003/160953<160953 Kbps loss-rate=19 2020-01-16 16:28:31,309 DEBUG overshot, min=1 kbps=133003 max=160953 2020-01-16 16:28:31,310 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R133003K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:28:34,649 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=1.7607 real_seconds=1.00 rate_Mbps=14.7755 tx_cpu=42 rx_cpu=0 drop=14433 pkt=16236 data_loss=88.89534 2020-01-16 16:28:34,650 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=1024 throughput=1<15130/133003<160953 Kbps loss-rate=88 2020-01-16 16:28:34,650 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R45390K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:28:38,411 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=2.9141 real_seconds=1.40 rate_Mbps=17.4319 tx_cpu=40 rx_cpu=0 drop=239 pkt=3223 data_loss=7.41541 2020-01-16 16:28:38,411 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=1024 throughput=1<17850/45390<45390 Kbps loss-rate=7 2020-01-16 16:28:38,412 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R31620K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:28:42,400 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=3.0596 real_seconds=1.66 rate_Mbps=15.4988 tx_cpu=52 rx_cpu=3 drop=237 pkt=3370 data_loss=7.03130 2020-01-16 16:28:42,400 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=1024 throughput=1<15870/31620<31620 Kbps loss-rate=7 2020-01-16 16:28:42,400 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R23745K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:28:45,758 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=2.8311 real_seconds=1.01 rate_Mbps=23.4944 tx_cpu=98 rx_cpu=2 drop=0 pkt=2899 data_loss=0.00000 2020-01-16 16:28:45,758 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=1024 throughput=1<24058/23745<23745 Kbps loss-rate=0 2020-01-16 16:28:45,758 DEBUG undershot, min=24058 kbps=23901 max=23745 2020-01-16 16:28:45,759 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] Measuring UDP Throughput (packet size=8192)... 2020-01-16 16:28:45,759 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R5000000K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:28:49,388 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=123.3359 real_seconds=1.00 rate_Mbps=1029.6621 tx_cpu=26 rx_cpu=11 drop=18602 pkt=34389 data_loss=54.09290 2020-01-16 16:28:49,389 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=8192 throughput=1<1054373/5000000<10000000 Kbps loss-rate=54 2020-01-16 16:28:49,389 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R3027186K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:28:52,751 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=21.4297 real_seconds=1.01 rate_Mbps=177.9435 tx_cpu=13 rx_cpu=14 drop=14616 pkt=17359 data_loss=84.19839 2020-01-16 16:28:52,752 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=8192 throughput=1<182214/3027186<3027186 Kbps loss-rate=84 2020-01-16 16:28:52,752 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R546642K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:28:56,421 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=36.0781 real_seconds=1.31 rate_Mbps=231.0973 tx_cpu=44 rx_cpu=2 drop=497 pkt=5115 data_loss=9.71650 2020-01-16 16:28:56,421 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=8192 throughput=1<236643/546642<546642 Kbps loss-rate=9 2020-01-16 16:28:56,422 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R391642K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:29:00,493 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=36.3203 real_seconds=1.74 rate_Mbps=175.2468 tx_cpu=46 rx_cpu=1 drop=247 pkt=4896 data_loss=5.04497 2020-01-16 16:29:00,494 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=8192 throughput=1<179452/391642<391642 Kbps loss-rate=5 2020-01-16 16:29:00,494 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R285547K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:29:04,459 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=23.6328 real_seconds=1.62 rate_Mbps=122.4721 tx_cpu=45 rx_cpu=1 drop=246 pkt=3271 data_loss=7.52073 2020-01-16 16:29:04,459 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=8192 throughput=1<125411/285547<285547 Kbps loss-rate=7 2020-01-16 16:29:04,460 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R205479K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:29:07,926 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=19.4609 real_seconds=1.14 rate_Mbps=142.7456 tx_cpu=71 rx_cpu=3 drop=85 pkt=2576 data_loss=3.29988 2020-01-16 16:29:07,927 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=8192 throughput=1<146171/205479<205479 Kbps loss-rate=3 2020-01-16 16:29:07,927 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R175825K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:29:11,285 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=19.6953 real_seconds=1.00 rate_Mbps=165.1783 tx_cpu=99 rx_cpu=2 drop=162 pkt=2683 data_loss=6.03791 2020-01-16 16:29:11,285 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=8192 throughput=1<169142/175825<175825 Kbps loss-rate=6 2020-01-16 16:29:11,285 DEBUG overshot, min=1 kbps=169142 max=175825 2020-01-16 16:29:11,286 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R169142K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:29:14,621 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=5.7969 real_seconds=1.00 rate_Mbps=48.6092 tx_cpu=54 rx_cpu=8 drop=1839 pkt=2581 data_loss=71.25138 2020-01-16 16:29:14,621 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=8192 throughput=1<49775/169142<175825 Kbps loss-rate=71 2020-01-16 16:29:14,622 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R109458K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:29:18,201 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=10.1484 real_seconds=1.22 rate_Mbps=69.6576 tx_cpu=78 rx_cpu=1 drop=350 pkt=1649 data_loss=21.22520 2020-01-16 16:29:18,201 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=8192 throughput=1<71329/109458<109458 Kbps loss-rate=21 2020-01-16 16:29:18,202 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R90393K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:29:21,535 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=10.7812 real_seconds=2.16 rate_Mbps=41.7756 tx_cpu=99 rx_cpu=1 drop=0 pkt=1380 data_loss=0.00000 2020-01-16 16:29:21,535 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=8192 throughput=1<42778/90393<90393 Kbps loss-rate=0 2020-01-16 16:29:21,536 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R66585K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:29:24,867 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=7.1797 real_seconds=1.00 rate_Mbps=60.2075 tx_cpu=99 rx_cpu=1 drop=97 pkt=1016 data_loss=9.54709 2020-01-16 16:29:24,867 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=8192 throughput=1<61652/66585<66585 Kbps loss-rate=9 2020-01-16 16:29:24,868 DEBUG overshot, min=1 kbps=61652 max=66585 2020-01-16 16:29:24,868 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R61652K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:29:28,375 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=3.6094 real_seconds=1.18 rate_Mbps=25.5680 tx_cpu=51 rx_cpu=0 drop=113 pkt=575 data_loss=19.65184 2020-01-16 16:29:28,376 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=8192 throughput=1<26181/61652<66585 Kbps loss-rate=19 2020-01-16 16:29:28,376 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R43916K -p5001 -P5002 -fparse 192.168.1.6 2020-01-16 16:29:31,736 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=5.2422 real_seconds=1.00 rate_Mbps=43.8077 tx_cpu=100 rx_cpu=1 drop=0 pkt=671 data_loss=0.00000 2020-01-16 16:29:31,736 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=8192 throughput=1<44859/43916<43916 Kbps loss-rate=0 2020-01-16 16:29:31,737 DEBUG undershot, min=44859 kbps=44387 max=43916 2020-01-16 16:29:31,748 INFO { 'az_from': u'nova:pod17-node5', 'az_to': u'nova:pod17-node4', 'desc': 'VM to VM different network fixed IP (inter-node)', 'distro_id': 'Ubuntu', 'distro_version': '14.04', 'ip_from': u'192.168.2.28', 'ip_to': u'192.168.1.6', 'results': [ { 'pkt_size': 65536, 'protocol': 'TCP', 'retrans': 3981, 'rtt_ms': 0.8, 'throughput_kbps': 3347437, 'tool': 'nuttcp-8.1.4'}, { 'pkt_size': 65536, 'protocol': 'TCP', 'retrans': 3941, 'rtt_ms': 1.02, 'throughput_kbps': 3369153, 'tool': 'nuttcp-8.1.4'}, { 'pkt_size': 65536, 'protocol': 'TCP', 'retrans': 1604, 'rtt_ms': 1.05, 'throughput_kbps': 3545206, 'tool': 'nuttcp-8.1.4'}, { 'loss_rate': 3.44, 'pkt_size': 128, 'protocol': 'UDP', 'throughput_kbps': 5853, 'tool': 'nuttcp-8.1.4'}, { 'loss_rate': 0.0, 'pkt_size': 1024, 'protocol': 'UDP', 'throughput_kbps': 24058, 'tool': 'nuttcp-8.1.4'}, { 'loss_rate': 0.0, 'pkt_size': 8192, 'protocol': 'UDP', 'throughput_kbps': 44859, 'tool': 'nuttcp-8.1.4'}, { 'protocol': 'ICMP', 'results': [ { 'packet_size': 64, 'rtt_avg_ms': '1.053', 'rtt_max_ms': '2.745', 'rtt_min_ms': '0.681', 'rtt_stddev': '0.580', 'rx_packets': '10', 'tx_packets': '10'}, { 'packet_size': 391, 'rtt_avg_ms': '3.505', 'rtt_max_ms': '27.092', 'rtt_min_ms': '0.694', 'rtt_stddev': '7.863', 'rx_packets': '10', 'tx_packets': '10'}, { 'packet_size': 1500, 'rtt_avg_ms': 0, 'rtt_max_ms': 0, 'rtt_min_ms': 0, 'rtt_stddev': 0, 'rx_packets': 0, 'tx_packets': 0}], 'tool': 'ping'}]} 2020-01-16 16:29:31,749 INFO ============================================================ 2020-01-16 16:29:31,749 INFO Flow 6: VM to VM different network floating IP (inter-node) 2020-01-16 16:29:40,834 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] PING 10.10.175.33 (10.10.175.33) 64(92) bytes of data. 72 bytes from 10.10.175.33: icmp_seq=1 ttl=63 time=347 ms 72 bytes from 10.10.175.33: icmp_seq=2 ttl=63 time=0.979 ms 72 bytes from 10.10.175.33: icmp_seq=3 ttl=63 time=4.61 ms 72 bytes from 10.10.175.33: icmp_seq=4 ttl=63 time=1.05 ms 72 bytes from 10.10.175.33: icmp_seq=5 ttl=63 time=0.821 ms 72 bytes from 10.10.175.33: icmp_seq=6 ttl=63 time=0.989 ms 72 bytes from 10.10.175.33: icmp_seq=7 ttl=63 time=0.700 ms 72 bytes from 10.10.175.33: icmp_seq=8 ttl=63 time=1.02 ms 72 bytes from 10.10.175.33: icmp_seq=9 ttl=63 time=0.722 ms 72 bytes from 10.10.175.33: icmp_seq=10 ttl=63 time=1.01 ms --- 10.10.175.33 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9009ms rtt min/avg/max/mdev = 0.700/35.963/347.719/103.924 ms 2020-01-16 16:29:49,891 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] PING 10.10.175.33 (10.10.175.33) 391(419) bytes of data. 399 bytes from 10.10.175.33: icmp_seq=1 ttl=63 time=0.844 ms 399 bytes from 10.10.175.33: icmp_seq=2 ttl=63 time=0.754 ms 399 bytes from 10.10.175.33: icmp_seq=3 ttl=63 time=0.906 ms 399 bytes from 10.10.175.33: icmp_seq=4 ttl=63 time=0.758 ms 399 bytes from 10.10.175.33: icmp_seq=5 ttl=63 time=1.12 ms 399 bytes from 10.10.175.33: icmp_seq=6 ttl=63 time=0.858 ms 399 bytes from 10.10.175.33: icmp_seq=7 ttl=63 time=1.02 ms 399 bytes from 10.10.175.33: icmp_seq=8 ttl=63 time=0.759 ms 399 bytes from 10.10.175.33: icmp_seq=9 ttl=63 time=1.04 ms 399 bytes from 10.10.175.33: icmp_seq=10 ttl=63 time=0.655 ms --- 10.10.175.33 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9007ms rtt min/avg/max/mdev = 0.655/0.872/1.121/0.145 ms 2020-01-16 16:29:58,953 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] PING 10.10.175.33 (10.10.175.33) 1500(1528) bytes of data. 1508 bytes from 10.10.175.33: icmp_seq=1 ttl=63 time=3.43 ms 1508 bytes from 10.10.175.33: icmp_seq=2 ttl=63 time=1.28 ms 1508 bytes from 10.10.175.33: icmp_seq=3 ttl=63 time=0.968 ms 1508 bytes from 10.10.175.33: icmp_seq=4 ttl=63 time=1.02 ms 1508 bytes from 10.10.175.33: icmp_seq=5 ttl=63 time=0.886 ms 1508 bytes from 10.10.175.33: icmp_seq=6 ttl=63 time=1.29 ms 1508 bytes from 10.10.175.33: icmp_seq=7 ttl=63 time=0.999 ms 1508 bytes from 10.10.175.33: icmp_seq=8 ttl=63 time=1.24 ms 1508 bytes from 10.10.175.33: icmp_seq=9 ttl=63 time=0.991 ms 1508 bytes from 10.10.175.33: icmp_seq=10 ttl=63 time=1.23 ms --- 10.10.175.33 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9013ms rtt min/avg/max/mdev = 0.886/1.336/3.433/0.713 ms 2020-01-16 16:29:58,954 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] Measuring TCP Throughput (packet size=65536)... 2020-01-16 16:29:58,955 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T10 -l65536 -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:30:09,063 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=4041.3125 real_seconds=10.00 rate_Mbps=3389.0148 tx_cpu=8 rx_cpu=13 retrans=2012 cwnd=2159 rtt_ms=1.21 2020-01-16 16:30:09,063 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T10 -l65536 -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:30:19,198 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=4103.3705 real_seconds=10.01 rate_Mbps=3440.3157 tx_cpu=8 rx_cpu=12 retrans=2304 cwnd=727 rtt_ms=1.42 2020-01-16 16:30:19,199 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T10 -l65536 -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:30:29,308 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=4050.0412 real_seconds=10.00 rate_Mbps=3395.9992 tx_cpu=7 rx_cpu=12 retrans=1305 cwnd=602 rtt_ms=1.04 2020-01-16 16:30:29,309 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] Measuring UDP Throughput (packet size=128)... 2020-01-16 16:30:29,309 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R5000000K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:30:32,668 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=1.7405 real_seconds=1.01 rate_Mbps=14.4811 tx_cpu=8 rx_cpu=4 drop=48704 pkt=62962 data_loss=77.35434 2020-01-16 16:30:32,668 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=128 throughput=1<14828/5000000<10000000 Kbps loss-rate=77 2020-01-16 16:30:32,668 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R44484K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:30:36,238 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=2.6899 real_seconds=1.21 rate_Mbps=18.6852 tx_cpu=42 rx_cpu=8 drop=519 pkt=22555 data_loss=2.30269 2020-01-16 16:30:36,239 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=128 throughput=1<19133/44484<44484 Kbps loss-rate=2 2020-01-16 16:30:36,239 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R31808K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:30:40,244 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=3.5652 real_seconds=1.65 rate_Mbps=18.1660 tx_cpu=57 rx_cpu=7 drop=424 pkt=29630 data_loss=1.42940 2020-01-16 16:30:40,244 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=128 throughput=1<18601/31808<31808 Kbps loss-rate=1 2020-01-16 16:30:40,245 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R25204K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:30:44,245 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=2.8423 real_seconds=1.64 rate_Mbps=14.5053 tx_cpu=56 rx_cpu=6 drop=0 pkt=23284 data_loss=0.00000 2020-01-16 16:30:44,245 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=128 throughput=1<14853/25204<25204 Kbps loss-rate=0 2020-01-16 16:30:44,246 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R20028K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:30:48,495 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=2.2861 real_seconds=1.91 rate_Mbps=10.0201 tx_cpu=50 rx_cpu=4 drop=424 pkt=19152 data_loss=2.21566 2020-01-16 16:30:48,496 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=128 throughput=1<10260/20028<20028 Kbps loss-rate=2 2020-01-16 16:30:48,496 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R15144K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:30:51,947 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=1.2402 real_seconds=1.09 rate_Mbps=9.5110 tx_cpu=64 rx_cpu=2 drop=424 pkt=10584 data_loss=4.00929 2020-01-16 16:30:51,947 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=128 throughput=1<9739/15144<15144 Kbps loss-rate=4 2020-01-16 16:30:51,948 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R12441K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:30:55,304 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=1.3422 real_seconds=1.71 rate_Mbps=6.5949 tx_cpu=99 rx_cpu=4 drop=1155 pkt=12150 data_loss=9.50647 2020-01-16 16:30:55,305 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=128 throughput=1<6753/12441<12441 Kbps loss-rate=9 2020-01-16 16:30:55,305 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R9597K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:30:58,664 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=0.5071 real_seconds=0.84 rate_Mbps=5.0407 tx_cpu=45 rx_cpu=0 drop=5217 pkt=9372 data_loss=55.67308 2020-01-16 16:30:58,665 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=128 throughput=1<5161/9597<9597 Kbps loss-rate=55 2020-01-16 16:30:58,665 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R7379K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:31:02,074 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=0.6642 real_seconds=1.05 rate_Mbps=5.3019 tx_cpu=71 rx_cpu=1 drop=424 pkt=5865 data_loss=7.22168 2020-01-16 16:31:02,074 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=128 throughput=1<5429/7379<7379 Kbps loss-rate=7 2020-01-16 16:31:02,075 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R6404K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:31:06,432 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=0.7209 real_seconds=1.77 rate_Mbps=3.4182 tx_cpu=53 rx_cpu=1 drop=0 pkt=5906 data_loss=0.00000 2020-01-16 16:31:06,433 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=128 throughput=1<3500/6404<6404 Kbps loss-rate=0 2020-01-16 16:31:06,433 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R4952K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:31:09,918 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=0.4506 real_seconds=1.13 rate_Mbps=3.3508 tx_cpu=75 rx_cpu=0 drop=424 pkt=4115 data_loss=10.29265 2020-01-16 16:31:09,918 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=128 throughput=1<3431/4952<4952 Kbps loss-rate=10 2020-01-16 16:31:09,918 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R4191K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:31:13,886 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=0.4996 real_seconds=1.78 rate_Mbps=2.3521 tx_cpu=99 rx_cpu=2 drop=0 pkt=4093 data_loss=0.00000 2020-01-16 16:31:13,887 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=128 throughput=1<2408/4191<4191 Kbps loss-rate=0 2020-01-16 16:31:13,887 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l128 -u -R3299K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:31:17,400 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=0.3933 real_seconds=1.00 rate_Mbps=3.2992 tx_cpu=99 rx_cpu=2 drop=0 pkt=3222 data_loss=0.00000 2020-01-16 16:31:17,401 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=128 throughput=1<3378/3299<3299 Kbps loss-rate=0 2020-01-16 16:31:17,401 DEBUG undershot, min=3378 kbps=3338 max=3299 2020-01-16 16:31:17,402 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] Measuring UDP Throughput (packet size=1024)... 2020-01-16 16:31:17,402 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R5000000K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:31:20,761 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=26.0010 real_seconds=0.85 rate_Mbps=257.7553 tx_cpu=22 rx_cpu=10 drop=45502 pkt=72127 data_loss=63.08590 2020-01-16 16:31:20,761 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=1024 throughput=1<263941/5000000<10000000 Kbps loss-rate=63 2020-01-16 16:31:20,762 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R791823K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:31:24,346 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=54.5381 real_seconds=1.25 rate_Mbps=365.6143 tx_cpu=40 rx_cpu=7 drop=20992 pkt=76839 data_loss=27.31946 2020-01-16 16:31:24,346 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=1024 throughput=1<374389/791823<791823 Kbps loss-rate=27 2020-01-16 16:31:24,346 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R583106K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:31:27,750 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=58.3135 real_seconds=1.05 rate_Mbps=464.3838 tx_cpu=78 rx_cpu=11 drop=0 pkt=59713 data_loss=0.00000 2020-01-16 16:31:27,750 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=1024 throughput=1<475529/583106<583106 Kbps loss-rate=0 2020-01-16 16:31:27,750 DEBUG undershot, min=475529 kbps=529317 max=583106 2020-01-16 16:31:27,751 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l1024 -u -R529317K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:31:31,107 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=36.0986 real_seconds=1.00 rate_Mbps=302.8236 tx_cpu=78 rx_cpu=16 drop=27649 pkt=64614 data_loss=42.79108 2020-01-16 16:31:31,108 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=1024 throughput=475529<310091/529317<583106 Kbps loss-rate=42 2020-01-16 16:31:31,108 INFO [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] Measuring UDP Throughput (packet size=8192)... 2020-01-16 16:31:31,109 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R5000000K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:31:34,467 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=11.2266 real_seconds=1.00 rate_Mbps=94.1237 tx_cpu=8 rx_cpu=6 drop=8717 pkt=10154 data_loss=85.84789 2020-01-16 16:31:34,467 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=8192 throughput=1<96382/5000000<10000000 Kbps loss-rate=85 2020-01-16 16:31:34,468 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R289146K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:31:37,931 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=27.9688 real_seconds=1.11 rate_Mbps=212.1823 tx_cpu=75 rx_cpu=1 drop=153 pkt=3733 data_loss=4.09853 2020-01-16 16:31:37,931 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=8192 throughput=1<217274/289146<289146 Kbps loss-rate=4 2020-01-16 16:31:37,932 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R253210K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:31:41,265 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=24.6562 real_seconds=1.00 rate_Mbps=206.7923 tx_cpu=99 rx_cpu=2 drop=708 pkt=3864 data_loss=18.32315 2020-01-16 16:31:41,265 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=8192 throughput=1<211755/253210<253210 Kbps loss-rate=18 2020-01-16 16:31:41,266 DEBUG overshot, min=1 kbps=211755 max=253210 2020-01-16 16:31:41,266 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R211755K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:31:44,624 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=4.7500 real_seconds=1.00 rate_Mbps=39.8189 tx_cpu=65 rx_cpu=16 drop=2624 pkt=3232 data_loss=81.18812 2020-01-16 16:31:44,625 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=8192 throughput=1<40774/211755<253210 Kbps loss-rate=81 2020-01-16 16:31:44,625 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R122322K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:31:48,417 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=8.5469 real_seconds=1.46 rate_Mbps=49.1290 tx_cpu=48 rx_cpu=1 drop=246 pkt=1340 data_loss=18.35836 2020-01-16 16:31:48,417 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=8192 throughput=1<50308/122322<122322 Kbps loss-rate=18 2020-01-16 16:31:48,418 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R86315K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:31:52,414 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=8.3594 real_seconds=1.64 rate_Mbps=42.7754 tx_cpu=57 rx_cpu=1 drop=193 pkt=1263 data_loss=15.28093 2020-01-16 16:31:52,415 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=8192 throughput=1<43802/86315<86315 Kbps loss-rate=15 2020-01-16 16:31:52,415 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] /tmp/nuttcp-8.1.4 -a -T1 -l8192 -u -R65058K -p5001 -P5002 -fparse 10.10.175.33 2020-01-16 16:31:55,774 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] megabytes=7.7422 real_seconds=1.01 rate_Mbps=64.2149 tx_cpu=99 rx_cpu=1 drop=2 pkt=993 data_loss=0.20109 2020-01-16 16:31:55,774 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] pkt-size=8192 throughput=1<65756/65058<65058 Kbps loss-rate=0 2020-01-16 16:31:55,774 DEBUG undershot, min=65756 kbps=65407 max=65058 2020-01-16 16:31:55,785 INFO { 'az_from': u'nova:pod17-node5', 'az_to': u'nova:pod17-node4', 'desc': 'VM to VM different network floating IP (inter-node)', 'distro_id': 'Ubuntu', 'distro_version': '14.04', 'ip_from': u'192.168.2.28', 'ip_to': u'10.10.175.33', 'results': [ { 'pkt_size': 65536, 'protocol': 'TCP', 'retrans': 2012, 'rtt_ms': 1.21, 'throughput_kbps': 3470351, 'tool': 'nuttcp-8.1.4'}, { 'pkt_size': 65536, 'protocol': 'TCP', 'retrans': 2304, 'rtt_ms': 1.42, 'throughput_kbps': 3522883, 'tool': 'nuttcp-8.1.4'}, { 'pkt_size': 65536, 'protocol': 'TCP', 'retrans': 1305, 'rtt_ms': 1.04, 'throughput_kbps': 3477503, 'tool': 'nuttcp-8.1.4'}, { 'loss_rate': 0.0, 'pkt_size': 128, 'protocol': 'UDP', 'throughput_kbps': 3378, 'tool': 'nuttcp-8.1.4'}, { 'loss_rate': 42.79, 'pkt_size': 1024, 'protocol': 'UDP', 'throughput_kbps': 310091, 'tool': 'nuttcp-8.1.4'}, { 'loss_rate': 0.2, 'pkt_size': 8192, 'protocol': 'UDP', 'throughput_kbps': 65756, 'tool': 'nuttcp-8.1.4'}, { 'protocol': 'ICMP', 'results': [ { 'packet_size': 64, 'rtt_avg_ms': '35.963', 'rtt_max_ms': '347.719', 'rtt_min_ms': '0.700', 'rtt_stddev': '103.924', 'rx_packets': '10', 'tx_packets': '10'}, { 'packet_size': 391, 'rtt_avg_ms': '0.872', 'rtt_max_ms': '1.121', 'rtt_min_ms': '0.655', 'rtt_stddev': '0.145', 'rx_packets': '10', 'tx_packets': '10'}, { 'packet_size': 1500, 'rtt_avg_ms': '1.336', 'rtt_max_ms': '3.433', 'rtt_min_ms': '0.886', 'rtt_stddev': '0.713', 'rx_packets': '10', 'tx_packets': '10'}], 'tool': 'ping'}]} 2020-01-16 16:31:55,786 INFO Deleting floating ip 2ed3bc73-03bb-4018-b9c2-54e903319c61 2020-01-16 16:31:57,441 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] Floating IP 10.10.175.41 deleted 2020-01-16 16:31:57,789 DEBUG [TestClient_a6611bbb-38ee-4cf6-a293-d1817ab697bf4] Instance deleted 2020-01-16 16:31:57,805 INFO Cleaning up... 2020-01-16 16:31:57,805 DEBUG [TestServer_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] Terminating nuttcp-8.1.4 2020-01-16 16:31:57,816 INFO Deleting floating ip a38a6aac-6237-4de5-99e3-0f5a05e0616a 2020-01-16 16:31:58,909 DEBUG [TestServer_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] Floating IP 10.10.175.33 deleted 2020-01-16 16:31:59,188 DEBUG [TestServer_a6611bbb-38ee-4cf6-a293-d1817ab697bf1] Instance deleted 2020-01-16 16:32:06,951 INFO Network pns-internal-net_a6611bbb-38ee-4cf6-a293-d1817ab697bf deleted. 2020-01-16 16:32:09,651 INFO Network pns-internal-net2_a6611bbb-38ee-4cf6-a293-d1817ab697bf deleted. 2020-01-16 16:32:09,750 INFO Removed public key pns_public_key 2020-01-16 16:32:09,750 INFO Deleting security group 2020-01-16 16:32:10,060 INFO Summary of results ================== Total Scenarios: 29 Passed Scenarios: 17 [100.00%] Failed Scenarios: 0 [0.00%] Skipped Scenarios: 12 +----------+-------------------------------------------------------+-------------------+----------------------------------------------------------------------------------+ | Scenario | Scenario Name | Functional Status | Data | +----------+-------------------------------------------------------+-------------------+----------------------------------------------------------------------------------+ | 1.1 | Same Network, Fixed IP, Intra-node, TCP | PASSED | {'tp_kbps': '4667740', 'rtt_ms': '0.546667'} | | 1.2 | Same Network, Fixed IP, Intra-node, UDP | PASSED | {128: {'tp_kbps': 14753, 'loss_rate': 5.87}, 1024: {'tp_kbps': 2284, | | | | | 'loss_rate': 0.0}, 8192: {'tp_kbps': 289439, 'loss_rate': 0.0}} | | 1.3 | Same Network, Fixed IP, Intra-node, ICMP | PASSED | {'rtt avg/min/max/stddev msec': {'391-byte': '0.349/0.161/0.506/0.107', | | | | | '64-byte': '0.420/0.149/1.445/0.370', '1500-byte': '0.492/0.287/1.057/0.200'}} | | 1.4 | Same Network, Fixed IP, Intra-node, Multicast | SKIPPED | {} | | 2.1 | Same Network, Fixed IP, Inter-node, TCP | PASSED | {'tp_kbps': '3164743', 'rtt_ms': '0.82'} | | 2.2 | Same Network, Fixed IP, Inter-node, UDP | PASSED | {128: {'tp_kbps': 1030, 'loss_rate': 0.0}, 1024: {'tp_kbps': 107200, | | | | | 'loss_rate': 0.5}, 8192: {'tp_kbps': 8249, 'loss_rate': 0.0}} | | 2.3 | Same Network, Fixed IP, Inter-node, ICMP | PASSED | {'rtt avg/min/max/stddev msec': {'391-byte': '0.615/0.423/0.873/0.121', | | | | | '64-byte': '0.746/0.384/2.619/0.636', '1500-byte': '0.873/0.524/2.070/0.428'}} | | 2.4 | Same Network, Fixed IP, Inter-node, Multicast | SKIPPED | {} | | 3.1 | Different Network, Fixed IP, Intra-node, TCP | PASSED | {'tp_kbps': '2698022', 'rtt_ms': '0.823333'} | | 3.2 | Different Network, Fixed IP, Intra-node, UDP | PASSED | {128: {'tp_kbps': 37766, 'loss_rate': 1.28}, 1024: {'tp_kbps': 83863, | | | | | 'loss_rate': 0.0}, 8192: {'tp_kbps': 96848, 'loss_rate': 0.0}} | | 3.3 | Different Network, Fixed IP, Intra-node, ICMP | PASSED | {'rtt avg/min/max/stddev msec': {'391-byte': '0.716/0.598/0.834/0.086', | | | | | '64-byte': '0.875/0.540/2.507/0.556', '1500-byte': '1.231/0.827/3.340/0.715'}} | | 3.4 | Different Network, Fixed IP, Intra-node, Multicast | SKIPPED | {} | | 4.1 | Different Network, Fixed IP, Inter-node, TCP | PASSED | {'tp_kbps': '3420598', 'rtt_ms': '0.956667'} | | 4.2 | Different Network, Fixed IP, Inter-node, UDP | PASSED | {128: {'tp_kbps': 5853, 'loss_rate': 3.44}, 1024: {'tp_kbps': 24058, | | | | | 'loss_rate': 0.0}, 8192: {'tp_kbps': 44859, 'loss_rate': 0.0}} | | 4.3 | Different Network, Fixed IP, Inter-node, ICMP | PASSED | {'rtt avg/min/max/stddev msec': {'391-byte': '3.505/0.694/27.092/7.863', | | | | | '64-byte': '1.053/0.681/2.745/0.580', '1500-byte': '0/0/0/0'}} | | 4.4 | Different Network, Fixed IP, Inter-node, Multicast | SKIPPED | {} | | 5.1 | Different Network, Floating IP, Intra-node, TCP | PASSED | {'tp_kbps': '2931042', 'rtt_ms': '0.913333'} | | 5.2 | Different Network, Floating IP, Intra-node, UDP | PASSED | {128: {'tp_kbps': 6371, 'loss_rate': 50.62}, 1024: {'tp_kbps': 169938, | | | | | 'loss_rate': 0.6}, 8192: {'tp_kbps': 168890, 'loss_rate': 0.0}} | | 5.3 | Different Network, Floating IP, Intra-node, ICMP | PASSED | {'rtt avg/min/max/stddev msec': {'391-byte': '3.411/0.476/28.017/8.203', | | | | | '64-byte': '0.640/0.473/0.750/0.092', '1500-byte': '1.063/0.588/3.124/0.708'}} | | 5.4 | Different Network, Floating IP, Intra-node, Multicast | SKIPPED | {} | | 6.1 | Different Network, Floating IP, Inter-node, TCP | PASSED | {'tp_kbps': '3490245', 'rtt_ms': '1.22333'} | | 6.2 | Different Network, Floating IP, Inter-node, UDP | PASSED | {128: {'tp_kbps': 3378, 'loss_rate': 0.0}, 1024: {'tp_kbps': 310091, | | | | | 'loss_rate': 42.79}, 8192: {'tp_kbps': 65756, 'loss_rate': 0.2}} | | 6.3 | Different Network, Floating IP, Inter-node, ICMP | PASSED | {'rtt avg/min/max/stddev msec': {'391-byte': '0.872/0.655/1.121/0.145', | | | | | '64-byte': '35.963/0.700/347.719/103.924', '1500-byte': | | | | | '1.336/0.886/3.433/0.713'}} | | 6.4 | Different Network, Floating IP, Inter-node, Multicast | SKIPPED | {} | | 7.1 | Native Throughput, TCP | SKIPPED | {} | | 7.2 | Native Throughput, UDP | SKIPPED | {} | | 7.3 | Native Throughput, ICMP | SKIPPED | {} | | 7.4 | Native Throughput, Multicast | SKIPPED | {} | | 8.1 | VM to Host Uploading | SKIPPED | {} | | 8.2 | VM to Host Downloading | SKIPPED | {} | +----------+-------------------------------------------------------+-------------------+----------------------------------------------------------------------------------+ 2020-01-16 16:32:10,064 INFO Saving results in json file: /home/opnfv/functest/results/vmtp/vmtp.json... 2020-01-16 16:32:10,403 - functest.opnfv_tests.openstack.vmtp.vmtp - INFO - vmtp_genchart -c /home/opnfv/functest/results/vmtp/vmtp.html /home/opnfv/functest/results/vmtp/vmtp.json Generating chart drawing code to /home/opnfv/functest/results/vmtp/vmtp.html... 2020-01-16 16:32:10,405 - xtesting.ci.run_tests - INFO - Test result: +-------------------+------------------+------------------+----------------+ | TEST CASE | PROJECT | DURATION | RESULT | +-------------------+------------------+------------------+----------------+ | vmtp | functest | 21:52 | PASS | +-------------------+------------------+------------------+----------------+ 2020-01-16 16:32:18,181 - xtesting.core.testcase - DEBUG - Publishing /home/opnfv/functest/results/functest.log ('text/plain', None)