README.md

This commit is contained in:
xiu2 2021-02-17 11:38:01 +08:00
parent 1a939f752b
commit cee772547b
1 changed files with 7 additions and 2 deletions

View File

@ -224,9 +224,12 @@ D:\ABC\CloudflareST\CloudflareST.exe -n 500 -t 4 -dn 20 -dt 5 -o " "
如果要单独**对一个或多个 IP 进行测速**,只需要把这些 IP 按如下格式写入到任意文本文件中,例如:`1.txt`
```
``` json
1.1.1.1/32
2.2.2.2/32
1.0.0.1/24
// 子网掩码 /32 指的是这个 IP 本身,即 1.1.1.1
// 子网掩码 /24 指的是这个 IP 最后一段,即 1.0.0.1~1.0.0.255
```
然后运行 CloudflareST 时加上启动参数 `-f 1.txt` 即可。
@ -238,6 +241,8 @@ CloudflareST.exe -f 1.txt
# Linux
./CloudflareST -f 1.txt
# 对于 IP 段 1.0.0.1/24 软件只会随机最后一段1.0.0.1~255如果要测速该 IP 段中的所有 IP需要加上 -allip 参数。
```
****