yanue / V2rayU

V2rayU,基于v2ray核心的mac版客户端,用于科学上网,使用swift编写,支持trojan,vmess,shadowsocks,socks5等服务协议,支持订阅, 支持二维码,剪贴板导入,手动配置,二维码分享等
https://github.com/yanue/V2rayU
18.72k stars 2.88k forks source link

有哪位大神有 V2rayU版本的config文件? #432

Closed chenApostle closed 4 years ago

chenApostle commented 4 years ago

xit status 255 V2Ray 4.22.1 (V2Fly, a community-driven edition of V2Ray.) Custom (go1.13.5 darwin/amd64) A unified platform for anti-censorship. main: failed to read config file: /Applications/V2rayU.app/Contents/Resources/config.json > v2ray.com/core/main/json: failed to execute v2ctl to convert config file. > v2ray.com/core/common/platform/ctlcmd: failed to execute v2ctl: v2ray.com/core/infra/conf/command: failed to parse json config > v2ray.com/core/infra/conf/serial: failed to parse json config > v2ray.com/core/infra/conf: unable to listen on domain address: 1991518963-xg15-zhui.scbshb.com

yanue commented 4 years ago

是2.0.0版本吗? 打开这个文件看下: /Applications/V2rayU.app/Contents/Resources/config.json

chenApostle commented 4 years ago

是2.0.0版本吗?:这个文件看下: /Applications/V2rayU.app/Contents/Resources/config.json

是2.0版本的

chenApostle commented 4 years ago

是2.0.0版本吗?:这个文件看下: /Applications/V2rayU.app/Contents/Resources/config.json

config.json 代码如下?

  "log": {
    "error": "",
    "loglevel": "none",
    "access": ""
  },
  "inbounds": [
    {
      "sniffing": {
        "enabled": true,
        "destOverride": [
          "tls",
          "http"
        ]
      },
      "listen": "1991518963-xg15-zhui.scbshb.com",
      "protocol": "socks",
      "settings": {
        "udp": false,
        "auth": "noauth"
      },
      "port": "1080"
    },
    {
      "sniffing": {
        "enabled": true,
        "destOverride": [
          "tls",
          "http"
        ]
      },
      "listen": "127.0.0.1",
      "protocol": "http",
      "settings": {
        "timeout": 360
      },
      "port": "1087"
    }
  ],
  "outbounds": [
    {
      "mux": {
        "enabled": false,
        "concurrency": 8
      },
      "protocol": "vmess",
      "streamSettings": {
        "wsSettings": {
          "path": "/",
          "headers": {
            "host": "aws-us2.nnet.tech"
          }
        },
        "tlsSettings": {
          "allowInsecure": true
        },
        "security": "none",
        "network": "ws"
      },
      "tag": "proxy",
      "settings": {
        "vnext": [
          {
            "address": "aws-us2.mmttpp.icu",
            "users": [
              {
                "id": "**",
                "alterId": 2,
                "level": 0,
                "security": "aes-128-gcm"
              }
            ],
            "port": 80
          }
        ]
      }
    },
    {
      "tag": "direct",
      "protocol": "freedom",
      "settings": {
        "domainStrategy": "AsIs",
        "userLevel": 0
      }
    },
    {
      "tag": "block",
      "protocol": "blackhole",
      "settings": {
        "response": {
          "type": "none"
        }
      }
    }
  ],
  "dns": {},
  "routing": {
    "settings": {
      "domainStrategy": "AsIs",
      "rules": []
    }
  }
}
yanue commented 4 years ago

"listen": "1991518963-xg15-zhui.scbshb.com", 你是通过导入的吧? 还是说"设置->高级设置"界面上设置的就是 1991518963-xg15-zhui.scbshb.com

image

chenApostle commented 4 years ago

"listen": "1991518963-xg15-zhui.scbshb.com",你是通过引入的吧? 还是说“设置->高级设置”界面上设置的就是1991518963-xg15-zhui.scbshb.com

图片 我够买了机场主的节点,然后通过节点导入后就不能用了?现在的代码如下?

V2Ray 4.22.1 (V2Fly, a community-driven edition of V2Ray.) Custom (go1.13.5 darwin/amd64) A unified platform for anti-censorship. 2020/03/02 14:06:24 [Debug] v2ray.com/core/app/log: Logger started 2020/03/02 14:06:24 [Info] v2ray.com/core/app/dns: DNS: created localhost client 2020/03/02 14:06:24 [Debug] v2ray.com/core/app/proxyman/inbound: creating stream worker on 0.0.0.0:1080 2020/03/02 14:06:24 [Debug] v2ray.com/core/app/proxyman/inbound: creating stream worker on 127.0.0.1:1087 2020/03/02 14:06:24 [Info] v2ray.com/core/transport/internet/tcp: listening TCP on 0.0.0.0:1080 Failed to start v2ray.com/core/app/proxyman/inbound: failed to listen TCP on 1087 > v2ray.com/core/transport/internet: failed to listen on address: 127.0.0.1:1087 > listen tcp 127.0.0.1:1087: bind: address already in use

55