From 6ed71fd626ca5ea41f72cde46c9e0b5aa92739b7 Mon Sep 17 00:00:00 2001 From: Michael Hohl Date: Wed, 18 Oct 2023 20:32:43 +0200 Subject: [PATCH] Replace two of the Clouvider network tests with Leaseweb ones Currently, all `iperf3` servers in the US are Clouvider ones, which doesn't give much diversity in the network tests. Leaseweb also seems to have plenty of public `iperf3` servers: https://kb.leaseweb.com/network/link-speeds. Replacing two of the Clouvider speed test servers in the US with two Leaseweb servers in the US, each provider would be represented by at most two servers. This would seem like a more representative network benchmark to me. --- yabs.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/yabs.sh b/yabs.sh index a7d8f96..80356c8 100644 --- a/yabs.sh +++ b/yabs.sh @@ -1,7 +1,7 @@ #!/bin/bash # Yet Another Bench Script by Mason Rowe -# Initial Oct 2019; Last update Sep 2023 +# Initial Oct 2019; Last update Oct 2023 # Disclaimer: This project is a work in progress. Any errors or suggestions should be # relayed to me via the GitHub project page linked below. @@ -12,7 +12,7 @@ # performance via fio. The script is designed to not require any dependencies # - either compiled or installed - nor admin privileges to run. -YABS_VERSION="v2023-09-06" +YABS_VERSION="v2023-10-18" echo -e '# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #' echo -e '# Yet-Another-Bench-Script #' @@ -821,9 +821,9 @@ if [ -z "$SKIP_IPERF" ]; then "ping6.online.net" "5200-5209" "Scaleway" "Paris, FR (10G)" "IPv6" \ "speedtest.novoserve.com" "5201-5206" "NovoServe" "North Holland, NL (40G)" "IPv4|IPv6" \ "speedtest.uztelecom.uz" "5200-5207" "Uztelecom" "Tashkent, UZ (10G)" "IPv4|IPv6" \ - "nyc.speedtest.clouvider.net" "5200-5209" "Clouvider" "NYC, NY, US (10G)" "IPv4|IPv6" \ - "dal.speedtest.clouvider.net" "5200-5209" "Clouvider" "Dallas, TX, US (10G)" "IPv4|IPv6" \ - "la.speedtest.clouvider.net" "5200-5209" "Clouvider" "Los Angeles, CA, US (10G)" "IPv4|IPv6" + "nyc.speedtest.clouvider.net" "5200-5209" "Clouvider" "New York City, US (10G)" "IPv4|IPv6" \ + "speedtest.lax11.us.leaseweb.net" "5201-5210" "Leaseweb" "Los Angeles, US (10G)" "IPv4|IPv6" \ + "speedtest.mtl2.ca.leaseweb.net "5201-5210" "Leaseweb" "Montreal, CA (10G)" "IPv4|IPv6" ) # if the "REDUCE_NET" flag is activated, then do a shorter iperf test with only three locations @@ -833,7 +833,7 @@ if [ -z "$SKIP_IPERF" ]; then "lon.speedtest.clouvider.net" "5200-5209" "Clouvider" "London, UK (10G)" "IPv4|IPv6" \ "ping.online.net" "5200-5209" "Scaleway" "Paris, FR (10G)" "IPv4" \ "ping6.online.net" "5200-5209" "Scaleway" "Paris, FR (10G)" "IPv6" \ - "nyc.speedtest.clouvider.net" "5200-5209" "Clouvider" "NYC, NY, US (10G)" "IPv4|IPv6" \ + "speedtest.lax11.us.leaseweb.net" "5201-5210" "Leaseweb" "Los Angeles, US (10G)" "IPv4|IPv6" \ ) fi