Oracle server speed can reach more than 400M Excellent

Background: I got a lifetime free server, and I can create two lifetime free instances, one is used to build the pagoda, and the other instance is going to be used as a tunnel, so I need to measure the speed of the server~~~

Conclusion: Overall, it can reach 50mb/s, which is faster than my home network. The speed of pinging all major websites is very fast, and the delay is about 300ms. Playing games is quite laborious.

SuperSpeed.sh - VPS三网测速脚本(上面的截图用的就是这个跑的)

bash <(curl -Lso- https://git.io/superspeed_uxh)
#使用方法(需要以root用户执行,用sudo -i获取root)

insert image description here
The script is basically universal, if it doesn’t work, just replace it with another one. Mine is an Oracle server in Osaka, Japan, which is what everyone often calls a permanent free server. Although the CPU and memory are only 1, the network speed is very good.

yabs测试脚本

wget -qO- yabs.sh | bash
#来自GitHub,老外比较爱用的服务器性能测试脚本。
SuperSpeed.sh - VPS三网测速脚本(上面的截图用的就是这个跑的)

bash <(curl -Lso- https://git.io/superspeed_uxh)
#使用方法(需要以root用户执行,用sudo -i获取root)
服务器一键测试脚本,支持speedtest国内外测速(显示上行、下行、抖动和丢包率)、Geekbench v5单核、多核性能测试,Netflix、YOuTube Premium、BiliBili和iQIYI等流媒体解锁测试,以及中国大陆方向路由测试等集成多项常用linux测试项目。

bash <(wget -qO- https://down.vpsaff.net/linux/speedtest/superbench.sh)
或者
wget -qO- https://down.vpsaff.net/linux/speedtest/superbench.sh | sudo bash
融合怪测评脚本【这个有点跑不动】

bash <(wget -qO- --no-check-certificate https://gitlab.com/spiritysdx/za/-/raw/main/ecs.sh)
#来自GitHub。
三网回程线路测试脚本

curl https://raw.githubusercontent.com/zhanghanyun/backtrace/main/install.sh -sSf | sh
#来自GitHub
Bench.sh性能测试脚本

wget -qO- bench.sh | bash
或者
curl -Lso- bench.sh | bash
一键开启BBR服务器加速脚本

wget --no-check-certificate -O /opt/bbr.sh https://github.com/teddysun/across/raw/master/bbr.sh
chmod 755 /opt/bbr.sh
/opt/bbr.sh
#BBR的作用就是尽量跑满带宽,并且尽量不要有排队的情况-进而实现服务器加速!
#脚本来自秋水逸冰
批量 ping 测试云服务器速度

bash <(curl -sL ping.nuk.one)
或者
bash <(wget -qO - ping.nuk.one)
#脚本来自GitHub
可视化服务器回程路由测试

wget --no-check-certificate https://tutu.ovh/bash/returnroute/route && chmod +x route && clear && ./route
或者
curl http://tutu.ovh/bash/returnroute/test.sh|bash
#来自李子博客,适用于centos6/7,测试服务器回程线路类型,是否为中国优化。
NextTrace路由追踪


bash <(curl -Ls https://raw.githubusercontent.com/sjlleo/nexttrace/main/nt_install.sh)
Example:nexttrace 8.8.8.8
#来自于@sjlleo开源的路由测试程序,支持多个查询接口,不受IPIP.NET的限制。
服务器回程路由测试

wget -qO- git.io/besttrace | bash
#真假线路信息,一测便知!

Guess you like

Origin blog.csdn.net/zhichina/article/details/130707994