vps交流

大屌帮我看看这段config奈飞分流到底哪里出错了


本帖最后由 mayapop 于 2021-12-29 15:31 编辑

原意是 ipv4对奈飞 ipv6 原生 ,xtls启动报错代码如下 :
改了很久都报错,实在找不到哪里出问题了。
大屌帮我看看这段config奈飞分流到底哪里出错了

Failed to start: main: failed to load config files: [/usr/local/etc/xray/config.json] > infra/conf/serial: failed to decode config: /usr/local/etc/xray/config.json > infra/conf/serial: failed to read config file at line 100 char 1 > invalid character ‘}’ looking for beginning of object key string

{
  "inbounds": [{
    "port": 443,
    "protocol": "vless",
    "settings": {
      "clients": [
        {
          "id": "4dab1498-edb3-4972-a9b1-54596b363d3c",
          "flow": "xtls-rprx-direct",
          "level": 0
        }
      ],
      "decryption": "none",
      "fallbacks": [
          {
              "alpn": "http/1.1",
              "dest": 80
          },
          {
              "alpn": "h2",
              "dest": 81
          }
      ]
    },
    "sniffing": {
        "enabled": true, //一定要开启 sniffing,V2Ray 才能识别 Netflix 的流量
        "destOverride": ["http", "tls"]
    },
    "streamSettings": {
        "network": "tcp",
        "security": "xtls",
        "xtlsSettings": {
            "serverName": "xxxx.xyz",
            "alpn": ["http/1.1", "h2"],
            "certificates": [
                {
                    "certificateFile": "/usr/local/etc/xray/sg81.lokta.xyz.pem",
                    "keyFile": "/usr/local/etc/xray/sg81.lokta.xyz.key"
                }
            ]
        }
    }

  }],
  "outbounds": [
      {
      "protocol": "freedom",
      "settings": {
         "domainStrategy": "UseIPv4"         
       },
      "tag": "IP-V4"
    },
    {
      "protocol": "blackhole",
      "settings": {},
      "tag": "blocked"
    }
  ],
  "policy": {
    "system": {
      "statsInboundDownlink": true,
      "statsInboundUplink": true
    }
  },
  "routing": {
    "rules": [
      {
        "type":"field",
        "domain": [
          "geosite:netflix"
        ],
        "inboundTag":  [
          "all-in"
         ],
        "outboundTag": "IP-V4"
      },
      {
        "inboundTag": [
          "api"
        ],
        "outboundTag": "api",
        "type": "field"
      },
      {
        "ip": [
          "geoip:private"
        ],
        "outboundTag": "blocked",
        "type": "field"
      },
      {
        "outboundTag": "blocked",
        "protocol": [
          "bittorrent"
        ],
        "type": "field"
      }
    ]
  },
}

倒数第二行多了逗号大屌帮我看看这段config奈飞分流到底哪里出错了
他不是说了吗 100行 最后那个逗号去掉。还有V2的注释好像是# 你写2个//不知道有没有用
在线json校验一下。格式不对

  1. {
  2.         "inbounds": [{
  3.                 "port": 443,
  4.                 "protocol": "vless",
  5.                 "settings": {
  6.                         "clients": [{
  7.                                 "id": "4dab1498-edb3-4972-a9b1-54596b363d3c",
  8.                                 "flow": "xtls-rprx-direct",
  9.                                 "level": 0
  10.                         }],
  11.                         "decryption": "none",
  12.                         "fallbacks": [{
  13.                                         "alpn": "http/1.1",
  14.                                         "dest": 80
  15.                                 },
  16.                                 {
  17.                                         "alpn": "h2",
  18.                                         "dest": 81
  19.                                 }
  20.                         ]
  21.                 },
  22.                 "sniffing": {
  23.                         "enabled": true,
  24.                         "destOverride": ["http", "tls"]
  25.                 },
  26.                 "streamSettings": {
  27.                         "network": "tcp",
  28.                         "security": "xtls",
  29.                         "xtlsSettings": {
  30.                                 "serverName": "xxxx.xyz",
  31.                                 "alpn": ["http/1.1", "h2"],
  32.                                 "certificates": [{
  33.                                         "certificateFile": "/usr/local/etc/xray/sg81.lokta.xyz.pem",
  34.                                         "keyFile": "/usr/local/etc/xray/sg81.lokta.xyz.key"
  35.                                 }]
  36.                         }
  37.                 }
  38.         }],
  39.         "outbounds": [{
  40.                         "protocol": "freedom",
  41.                         "settings": {
  42.                                 "domainStrategy": "UseIPv4"
  43.                         },
  44.                         "tag": "IP-V4"
  45.                 },
  46.                 {
  47.                         "protocol": "blackhole",
  48.                         "settings": {},
  49.                         "tag": "blocked"
  50.                 }
  51.         ],
  52.         "policy": {
  53.                 "system": {
  54.                         "statsInboundDownlink": true,
  55.                         "statsInboundUplink": true
  56.                 }
  57.         },
  58.         "routing": {
  59.                 "rules": [{
  60.                                 "type": "field",
  61.                                 "domain": [
  62.                                         "geosite:netflix"
  63.                                 ],
  64.                                 "inboundTag": [
  65.                                         "all-in"
  66.                                 ],
  67.                                 "outboundTag": "IP-V4"
  68.                         },
  69.                         {
  70.                                 "inboundTag": [
  71.                                         "api"
  72.                                 ],
  73.                                 "outboundTag": "api",
  74.                                 "type": "field"
  75.                         },
  76.                         {
  77.                                 "ip": [
  78.                                         "geoip:private"
  79.                                 ],
  80.                                 "outboundTag": "blocked",
  81.                                 "type": "field"
  82.                         },
  83.                         {
  84.                                 "outboundTag": "blocked",
  85.                                 "protocol": [
  86.                                         "bittorrent"
  87.                                 ],
  88.                                 "type": "field"
  89.                         }
  90.                 ]
  91.         }
  92. }

复制代码