Administrator
Published on 2025-12-03 / 9 Visits
0
0

What Are the Useful VPS Testing Tools and How to Use Them?

1. Summary

Many people want to compare the actual network quality of their VPS after purchasing one. In this article, I will directly tell you what VPS testing tools are available and how to use them.

2. How to Use VPS Testing Tools

First, log in to the control panel of your VPS server provider. After logging in via SSH, run the test tool script to perform the tests. You can also use a remote server system (like MobaXterm) and input your IP address and password via SSH to run the tests.

3. VPS Performance Test Scripts

3.1 Superspeed

This is a very commonly used script, created by a blogger known as "Old Ghost." Superspeed can test the network speed of your VPS server to domestic nodes in China.

Code:

wget https://raw.githubusercontent.com/oooldking/script/master/superspeed.sh
chmod +x superspeed.sh
./superspeed.sh

3.2 ZBench

This is one of my favorite test scripts, created by two developers, "Water Leakage" and "Kirito." ZBench is an upgraded version of SuperBench, with both Chinese and English versions. It tests more VPS performance metrics and provides an evaluation report.

Code:

Chinese version:

wget -N --no-check-certificate https://raw.githubusercontent.com/FunctionClub/ZBench/master/ZBench-CN.sh && bash ZBench-CN.sh

Or English version:

wget -N --no-check-certificate https://raw.githubusercontent.com/FunctionClub/ZBench/master/ZBench.sh && bash ZBench.sh

3.3 Bench.sh

This script was written by a blogger named "Autumn Water Ice." It performs I/O testing, runs three tests, and takes the average. It also supports IPv6 download testing, making it a comprehensive testing tool.

Code:

wget -qO- bench.sh | bash

Or

curl -Lso- bench.sh | bash

Or

wget -qO- 86.re/bench.sh | bash

Or

curl -so- 86.re/bench.sh | bash

3.4 SuperBench.sh

Similar to 3.1, this script was also created by "Old Ghost." It is more refined in distinguishing and integrating different bench testing scripts, making the results clearer and more direct.

Code:

wget -qO- --no-check-certificate https://raw.githubusercontent.com/oooldking/script/master/superbench.sh | bash

Or

curl -Lso- -no-check-certificate https://raw.githubusercontent.com/oooldking/script/master/superbench.sh | bash

3.5 Fusion Test Evaluation

This script offers comprehensive testing, with unique features like unlocking popular streaming services, Tiktok, and port detection.

Code:

curl -L https://gitlab.com/spiritysdx/za/-/raw/main/ecs.sh -o ecs.sh && chmod +x ecs.sh && bash ecs.sh -m 1

4. Conclusion

This is a summary based on the testing tools I personally use. If anyone knows of better VPS testing tools, feel free to share them in the comments section.


Comment