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.
This commit is contained in:
Michael Hohl 2023-10-18 20:32:43 +02:00 committed by GitHub
commit 6ed71fd626
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

12
yabs.sh
View file

@ -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