Xray官方脚本怎么和八合一的速度差那么大呢?

62次阅读

共计 1893 个字符,预计需要花费 5 分钟才能阅读完成。

内容最后由 呆呆的游客 于 2023-1-30 12:06 编辑 ============== 官方脚本 ============== 安装脚本:bash -c "$(curl -L https://github.com/XTLS/Xray-install/raw/main/install-release.sh)" @ install -u root 配置文件如下 {        "log": {        "loglevel": "warning"       },        "inbounds": [        {          "port": 32001,          "protocol": "vless",          "tag":"mmt",          "settings": {                "clients": [                 {                        "id": "f380db0b-96e3-4c9d-8ce9-b665d70860d5",                        "flow":"xtls-rprx-direct"                 }                ],                "decryption": "none"          }        }        ],        "outbounds":[                {                        "protocol":"freedom",                        "settings":{                                "domainStrategy":"UseIPv4"                       },                        "tag":"IPv4-out"                },                {                        "protocol":"freedom",                        "settings":{                                "domainStrategy":"UseIPv6"                       },                        "tag":"IPv6-out"                },                {                        "protocol":"blackhole",                        "tag":"blackhole-out"               }        ],        "dns": {                "servers": [                  "localhost"               ]        }}============== 八合一脚本 ============== 安装脚本:wget -P /root -N –no-check-certificate "https://raw.githubusercontent.com/mack-a/v2ray-agent/master/install.sh" && chmod 700 /root/install.sh && /root/install.sh 选择 1。任意组合安装 2.xray-core3.VLESS+TLS/XTLS+TCP 安装完毕后,我会在 /etc/v2ray-agent/xray/conf/02_VLESS_TCP_inbounds.json 再加个账户,添加的配置如下 {  "port": 32001,  "protocol": "vless",  "tag":"mmt",  "settings": {        "clients": [         {                "id": "f380db0b-96e3-4c9d-8ce9-b665d70860d5",                "flow":"xtls-rprx-direct"         }        ],        "decryption": "none"  }}============== 问题 ============== 这两种方式部署到两台同地区甲骨文机器了,都开启了 BBR,都用 32001 这个端口富强,速度上官方脚本(YouTube1000)明显不如八合一(YouTube 一万多),,这是为什么呢?难道八合一有啥加成?大炮 2023-01-30 12:06 2 八合一的我不用。flyingfly02 2023-01-30 12:07 3 八合一脚本是真的好用,现在又开始更新了。雨墨 2023-01-30 12:08 4 没用过八合一 醋醋来啦 2023-01-30 12:12 5 一般整合的脚本都 带了 bbr 之类的吧 weixiangnan 2023-01-30 12:21 6 没用过八合一 Erik 2023-01-30 12:22 7 一直用八合一,还行 Mgle 2023-01-30 12:42 8 八合一很不错 打工人 2023-01-30 12:44 9 知道你有两台同地区甲骨文啦

正文完
 0