Created
February 3, 2017 01:29
-
-
Save madeye/c046fc35e10a82154f4697fb316a7ac6 to your computer and use it in GitHub Desktop.
Bandwidth test for shadowsocks
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
method=$1 | |
ss-tunnel -k test -m $method -l 8387 -L 127.0.0.1:8388 -s 127.0.0.1 -p 8389 & | |
ss_tunnel_pid=$! | |
ss-server -k test -m $method -s 127.0.0.1 -p 8389 & | |
ss_server_pid=$! | |
iperf -s -p 8388 & | |
iperf_pid=$! | |
sleep 3 | |
iperf -c 127.0.0.1 -p 8387 | |
kill $ss_tunnel_pid | |
kill $ss_server_pid | |
kill $iperf_pid | |
echo "Test Finished" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
我在我本地的电脑上运行,发现使用aes-256-gcm加密算法,速度只有600Mbits/sec ,我电脑是17款的13寸MacBook。
我感觉速度远远低于预期啊