Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

使用KCP协议的配置文件,到Actinium 上转换后无法使用 #21

Open
jankzl opened this issue Mar 13, 2017 · 7 comments
Open

Comments

@jankzl
Copy link

jankzl commented Mar 13, 2017

我在windows (v2ray v2.20.2)上可用的使用KCP协议的配置文件,到Actinium 0.6.1上转换后无法使用。具体表现为无法点击连接按钮/按钮图标点击后无变化/下拉菜单显示v2RAY正在运行但没有建立VPN链接,也无法访问任何网络。之前使用tcp简单配置的配置文件的时候可以使用。
下面是对照Actinium默认配置文件修改后的配置文件,也无法连接成功。请问这是什么原因呢?


{
  "port": 10808, 
  "log": {
    "loglevel": "warning"
  },
  "inbound": {
    "protocol": "socks",
    "listen": "127.0.0.1",
    "settings": {
      "auth": "noauth",
      "udp": true
    }
  },
  "inboundDetour": [],
  "outbound": {
    "protocol": "vmess",
    "settings": {
      "vnext": [
        {
          "address": "myhost",
          "port": myport,
          "users": [
            {
              "id": "myid",
              "alterId": 100
            }
          ]
        }
      ]
    },
   "streamSettings": {
      "network": "kcp",
      "security": "none",
      "tlsSettings": {
        "allowInsecure": true
      },
      "kcpSettings": {
        "mtu": 1350,
        "readBufferSize": 3,
        "uplinkCapacity": 2,
        "downlinkCapacity": 8,
        "congestion": false,
        "tti": 20,
        "writeBufferSize": 3,
        "header": {
          "type": "wechat-video"
        }
      }
  },
  "outboundDetour": [
    {
      "protocol": "freedom",
      "settings": {},
      "tag": "direct"
    }
  ],
  "dns": {
    "servers": [
      "8.8.8.8",
      "8.8.4.4",
      "localhost"
    ]
  },
  "routing": {
    "strategy": "rules",
    "settings": {
      "domainStrategy": "IPIfNonMatch",
      "rules": [
        {
          "type": "field",
          "port": "1-52",
          "outboundTag": "direct"
        },
        {
          "type": "field",
          "port": "54-79",
          "outboundTag": "direct"
        },
        {
          "type": "field",
          "port": "81-442",
          "outboundTag": "direct"
        },
        {
          "type": "field",
          "port": "444-65535",
          "outboundTag": "direct"
        },
        {
          "type": "chinasites",
          "outboundTag": "direct"
        },
        {
          "type": "field",
          "domain": [
            "*.5ivdo.com"
          ],
          "ip": [
            "0.0.0.0/8",
            "10.0.0.0/8",
            "100.64.0.0/10",
            "127.0.0.0/8",
            "169.254.0.0/16",
            "172.16.0.0/12",
            "192.0.0.0/24",
            "192.0.2.0/24",
            "192.168.0.0/16",
            "198.18.0.0/15",
            "198.51.100.0/24",
            "203.0.113.0/24",
            "::1/128",
            "fc00::/7",
            "fe80::/10"
          ],
          "outboundTag": "direct"
        },
        {
          "type": "chinaip",
          "outboundTag": "direct"
        }
      ]
    }
  },
  "transport": {},
  "#lib2ray": {
    "enabled": true,
    "listener": {
      "onUp": "#none",
      "onDown": "#none"
    },
    "env": [
      "V2RaySocksPort=10808"
    ],
    "render": [],
    "escort": [],
    "vpnservice": {
      "Target": "${datadir}tun2socks",
      "Args": [
        "--netif-ipaddr",
        "26.26.26.2",
        "--netif-netmask",
        "255.255.255.0",
        "--socks-server-addr",
        "127.0.0.1:$V2RaySocksPort",
        "--tunfd",
        "3",
        "--tunmtu",
        "1500",
        "--sock-path",
        "/dev/null",
        "--loglevel",
        "4",
        "--enable-udprelay"
      ],
      "VPNSetupArg": "m,1500 a,26.26.26.1,24 r,0.0.0.0,0"
    }
  }
}

@xiaokangwang
Copy link
Contributor

myhost如果是域名的话,需要使用PreparedDNS功能才能正常使用

@xiaokangwang
Copy link
Contributor

IP就没有这个问题

@jankzl
Copy link
Author

jankzl commented Mar 13, 2017

可是我用的就是ip :(

@lovetcp
Copy link

lovetcp commented Mar 20, 2017

我也遇到同样的问题,

@RyoNanamizu
Copy link

PreparedDNS是什么意思……

@fuowang
Copy link

fuowang commented Jul 22, 2017

"kcpSettings": {
"mtu": 1350,
"readBufferSize": 3,
"uplinkCapacity": 2,
"downlinkCapacity": 8,
"congestion": false,
"tti": 20,
"writeBufferSize": 3,
"header": {
"type": "wechat-video"
}
}
这一段 ,最后的"type":"wechat-video",服务器和客户端要相同。

@himandy
Copy link

himandy commented Nov 18, 2017

我也遇到同样的问题。不知道该怎么解决?

"type":"wechat-video",服务器和客户端要相同。(已经检查过,是相同的。)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants