Merge 57c70f66db into f648820143
This commit is contained in:
commit
7ee67ab134
1 changed files with 9 additions and 2 deletions
11
yabs.sh
11
yabs.sh
|
|
@ -12,7 +12,7 @@
|
||||||
# performance via fio. The script is designed to not require any dependencies
|
# performance via fio. The script is designed to not require any dependencies
|
||||||
# - either compiled or installed - nor admin privileges to run.
|
# - either compiled or installed - nor admin privileges to run.
|
||||||
|
|
||||||
YABS_VERSION="v2023-04-23"
|
YABS_VERSION="v2023-07-08"
|
||||||
|
|
||||||
echo -e '# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #'
|
echo -e '# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #'
|
||||||
echo -e '# Yet-Another-Bench-Script #'
|
echo -e '# Yet-Another-Bench-Script #'
|
||||||
|
|
@ -298,9 +298,15 @@ function ip_info() {
|
||||||
echo "$net_type Network Information:"
|
echo "$net_type Network Information:"
|
||||||
echo "---------------------------------"
|
echo "---------------------------------"
|
||||||
|
|
||||||
if [[ -n "$isp" && -n "$as" ]]; then
|
if [[ -n "$isp" ]]; then
|
||||||
echo "ISP : $isp"
|
echo "ISP : $isp"
|
||||||
|
else
|
||||||
|
echo "ISP : Unknown"
|
||||||
|
fi
|
||||||
|
if [[ -n "$as" ]]; then
|
||||||
echo "ASN : $as"
|
echo "ASN : $as"
|
||||||
|
else
|
||||||
|
echo "ASN : Unknown"
|
||||||
fi
|
fi
|
||||||
if [[ -n "$org" ]]; then
|
if [[ -n "$org" ]]; then
|
||||||
echo "Host : $org"
|
echo "Host : $org"
|
||||||
|
|
@ -818,6 +824,7 @@ if [ -z "$SKIP_IPERF" ]; then
|
||||||
"nyc.speedtest.clouvider.net" "5200-5209" "Clouvider" "NYC, NY, US (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" \
|
"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" \
|
"la.speedtest.clouvider.net" "5200-5209" "Clouvider" "Los Angeles, CA, US (10G)" "IPv4|IPv6" \
|
||||||
|
"iperf.biznetnetworks.com" "5201-5203" "Biznet" "Jakarta, ID (10G)" "IPv4|IPv6"
|
||||||
)
|
)
|
||||||
|
|
||||||
# if the "REDUCE_NET" flag is activated, then do a shorter iperf test with only three locations
|
# if the "REDUCE_NET" flag is activated, then do a shorter iperf test with only three locations
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue