融合怪测试
# 交互形式
curl -L https://github.com/spiritLHLS/ecs/raw/main/ecs.sh -o ecs.sh && chmod +x ecs.sh && bash ecs.sh
# 非交互形式
curl -L https://github.com/spiritLHLS/ecs/raw/main/ecs.sh -o ecs.sh && chmod +x ecs.sh && bash ecs.sh 1 0 0
三网路由测试
# 安装脚本
bash <(curl -Ls https://raw.githubusercontent.com/sjlleo/nexttrace/main/nt_install.sh)
# 使用方法(更多用法参考github)
nexttrace [ip]
nexttrace --fast-trace
nexttrace --table [ip]
开启 BBR
tee -a /etc/sysctl.conf << EOF
net.core.default_qdisc=fq
net.ipv4.tcp_congestion_control=bbr
net.ipv4.tcp_available_congestion_control=cubic bbr
net.ipv4.tcp_fastopen=3
net.ipv4.tcp_keepalive_time=600
net.ipv4.tcp_keepalive_intvl=30
net.ipv4.tcp_keepalive_probes=5
net.ipv4.tcp_rmem=8192 262144 536870912
net.ipv4.tcp_wmem=4096 16384 536870912
EOF
sysctl -p
Bench 测试
wget -qO- bench.sh | bash
三网测速
bash <(curl -Lso- https://git.io/superspeed_uxh)
流媒体解锁测试
bash <(curl -L -s media.ispvps.com)
Docker
# 安装
curl -sSL https://get.docker.com/ | sh
# 卸载
sudo apt-get remove docker docker-engine
rm -fr /var/lib/docker/
Alpine Xray Installation
apk add curl
curl -O https://raw.githubusercontent.com/XTLS/alpinelinux-install-xray/main/install-release.sh
ash install-release.sh
rc-update add xray
rc-service xray start
Comments