返回列表 發帖

233yes.com里一键安装的config.json是长怎么样?

本帖最後由 角色 於 2019-1-16 20:54 編輯

如果我们但从官网v2ray里的设定说明,真的有的时候不知道怎样入手?但是如果我们从233.yes.com一键安装,我们看看它的config.json,再和官网的parameter settings说明,我们就更加明白官网里的设置设定是什么设的。

我们先用下面指令
  1. bash <(curl -s -L https://233yes.com/v2ray.sh)
複製代碼
.

我们得到下面的信息:
  1. ........... V2Ray 一键安装脚本 & 管理脚本 by 233now.com ..........

  2. 帮助说明: https://233now.com/post/1/

  3. 搭建教程: https://233now.com/post/2/

  4. 1. 安装

  5. 2. 卸载

  6. 请选择 [1-2]:
複製代碼
.


Client: BifrostV

需要用到从TAB转Space的Linux指令:
  1. sed 's/\t/   /g' config.json > config.json.notab
複製代碼
.

如果你多次用安装script会产生下面error messages
  1. /dev/fd/63: line 104: /etc/v2ray/233boy/v2ray/src/v2ray-info.sh: No such file or directory
  2. /dev/fd/63: line 959: _v2_args: command not found
  3. /dev/fd/63: line 960: _v2_info: command not found
  4. /dev/fd/63: line 104: /etc/v2ray/233boy/v2ray/src/ss-info.sh: No such file or directory
複製代碼
.

你需要下面指令彻底
  1. [root@host v2ray]# cd /
  2. [root@host /]# !rm
  3. rm -rf /etc/v2ray
  4. [root@host /]#
複製代碼
.

本帖最後由 角色 於 2019-1-18 00:17 編輯

我们选<1>得


请选择 [1-2]:1

请选择 V2Ray 传输协议 [1-32]

  1. TCP,
From v2ray default config. Link2,
From default config. Link3
  2. TCP_HTTP
  3. WebSocket, From v2ray default config. Link2
  4. WebSocket + TLS
  5. HTTP/2
  6. mKCP
  7. mKCP_utp
  8. mKCP_srtp
  9. mKCP_wechat-video, From v2ray default config. Link2
10. mKCP_dtls
11. mKCP_wireguard
12. QUIC
13. QUIC_utp
14. QUIC_srtp
15. QUIC_wechat-video
16. QUIC_dtls
17. QUIC_wireguard
18. TCP_dynamicPort
19. TCP_HTTP_dynamicPort
20. WebSocket_dynamicPort
21. mKCP_dynamicPort
22. mKCP_utp_dynamicPort
23. mKCP_srtp_dynamicPort
24. mKCP_wechat-video_dynamicPort
25. mKCP_dtls_dynamicPort
26. mKCP_wireguard_dynamicPort
27. QUIC_dynamicPort
28. QUIC_utp_dynamicPort
29. QUIC_srtp_dynamicPort
30. QUIC_wechat-video_dynamicPort
31. QUIC_dtls_dynamicPort
32. QUIC_wireguard_dynamicPort

备注1: 含有 [dynamicPort] 的即启用动态端口..
备注2: [utp | srtp | wechat-video | dtls | wireguard] 分别伪装成 [BT下载 | 视频通话 | 微信视频通话 | DTLS 1.2 数据包 | WireGuard 数据包]

(默认协议: TCP):

1、其他configuration,上面加Shadowsocks,我从上面第一个TCP,然后在configuration里,我多加了一个Shadowsocks account
V2Ray TCP + Shadowsocks Link

2、官方的default v2ray configuration script "config.json" Link

TOP

本帖最後由 角色 於 2019-1-16 21:34 編輯

我们怎样利用真实的案例去了解V2Ray是怎样configure?

我们看configuration scripts “config.json”时,要参考下面两个网站:

V2Ray 官网:
https://www.v2ray.com

V2Ray白话文教程:
https://toutyrater.github.io

TOP

本帖最後由 角色 於 2019-1-14 17:36 編輯

1. TCP
  1. ---------- V2Ray 配置信息 -------------

  2. 地址 (Address) = a.b.c.d

  3. 端口 (Port) = 61301

  4. 用户ID (User ID / UUID) = 02edcf2e-4d28-4f76-ba79-c9dd919c5374

  5. 额外ID (Alter Id) = 233

  6. 传输协议 (Network) = tcp

  7. 伪装类型 (header type) = none

  8. ---------- END -------------

  9. V2Ray 客户端使用教程: https://233now.com/post/4/

  10. 提示: 输入 v2ray url 可生成 vmess URL 链接 / 输入 v2ray qr 可生成二维码链接

  11. [root@host ~]#
複製代碼
.
  1. {
  2.    "log": {
  3.       "access": "/var/log/v2ray/access.log",
  4.       "error": "/var/log/v2ray/error.log",
  5.       "loglevel": "warning"
  6.    },
  7.    "inbounds": [
  8.       {
  9.          "port": 61301,
  10.          "protocol": "vmess",
  11.          "settings": {
  12.             "clients": [
  13.                {
  14.                   "id": "02edcf2e-4d28-4f76-ba79-c9dd919c5374",
  15.                   "level": 1,
  16.                   "alterId": 233
  17.                }
  18.             ]
  19.          },
  20.          "streamSettings": {
  21.             "network": "tcp"
  22.          },
  23.          "sniffing": {
  24.             "enabled": true,
  25.             "destOverride": [
  26.                "http",
  27.                "tls"
  28.             ]
  29.          }
  30.       }
  31.       //include_ss
  32.       //include_socks
  33.       //include_mtproto
  34.       //include_config
  35.       //
  36.    ],
  37.    "outbounds": [
  38.       {
  39.          "protocol": "freedom",
  40.          "settings": {}
  41.       },
  42.       {
  43.          "protocol": "blackhole",
  44.          "settings": {},
  45.          "tag": "blocked"
  46.       },
  47.       {
  48.          "protocol": "freedom",
  49.          "settings": {},
  50.          "tag": "direct"
  51.       },
  52.       {
  53.          "protocol": "mtproto",
  54.          "settings": {},
  55.          "tag": "tg-out"
  56.       }
  57.    ],
  58.    "dns": {
  59.       "server": [
  60.          "8.8.8.8",
  61.          "8.8.4.4",
  62.          "1.1.1.1",
  63.          "1.0.0.1",
  64.          "localhost"
  65.       ]
  66.    },
  67.    "routing": {
  68.       "domainStrategy": "IPOnDemand",   
  69.       "rules": [
  70.          {
  71.             "type": "field",
  72.             "ip": [
  73.                "0.0.0.0/8",
  74.                "10.0.0.0/8",
  75.                "100.64.0.0/10",
  76.                "127.0.0.0/8",
  77.                "169.254.0.0/16",
  78.                "172.16.0.0/12",
  79.                "192.0.0.0/24",
  80.                "192.0.2.0/24",
  81.                "192.168.0.0/16",
  82.                "198.18.0.0/15",
  83.                "198.51.100.0/24",
  84.                "203.0.113.0/24",
  85.                "::1/128",
  86.                "fc00::/7",
  87.                "fe80::/10"
  88.             ],
  89.             "outboundTag": "blocked"
  90.          },
  91.          {
  92.             "type": "field",
  93.             "inboundTag": ["tg-in"],
  94.             "outboundTag": "tg-out"
  95.          },
  96.          {
  97.             "type": "field",
  98.             "domain": [
  99.                "domain:epochtimes.com",
  100.                "domain:epochtimes.com.tw",
  101.                "domain:epochtimes.fr",
  102.                "domain:epochtimes.de",
  103.                "domain:epochtimes.jp",
  104.                "domain:epochtimes.ru",
  105.                "domain:epochtimes.co.il",
  106.                "domain:epochtimes.co.kr",
  107.                "domain:epochtimes-romania.com",
  108.                "domain:erabaru.net",
  109.                "domain:lagranepoca.com",
  110.                "domain:theepochtimes.com",
  111.                "domain:ntdtv.com",
  112.                "domain:ntd.tv",
  113.                "domain:ntdtv-dc.com",
  114.                "domain:ntdtv.com.tw",
  115.                "domain:minghui.org",
  116.                "domain:renminbao.com",
  117.                "domain:dafahao.com",
  118.                "domain:dongtaiwang.com",
  119.                "domain:falundafa.org",
  120.                "domain:wujieliulan.com",
  121.                "domain:ninecommentaries.com",
  122.                "domain:shenyun.com"
  123.             ],
  124.             "outboundTag": "blocked"
  125.          },
  126.          {
  127.             "type": "field",
  128.             "protocol": [
  129.                "bittorrent"
  130.             ],
  131.             "outboundTag": "blocked"
  132.          }
  133.          //include_ban_ad
  134.          //include_rules
  135.          //
  136.       ]
  137.    },
  138.    "transport": {
  139.       "kcpSettings": {
  140.          "uplinkCapacity": 100,
  141.          "downlinkCapacity": 100,
  142.          "congestion": true
  143.       },
  144.       "sockopt": {
  145.          "tcpFastOpen": true
  146.       }
  147.    }
  148. }
複製代碼
.

TOP

本帖最後由 角色 於 2019-1-14 17:36 編輯

2. TCP_HTTP
  1. ---------- V2Ray 配置信息 -------------

  2. 地址 (Address) = a.b.c.d

  3. 端口 (Port) = 28952

  4. 用户ID (User ID / UUID) = 9ef8f590-607a-4cb8-9a5b-7231e521c25b

  5. 额外ID (Alter Id) = 233

  6. 传输协议 (Network) = tcp

  7. 伪装类型 (header type) = http

  8. ---------- END -------------

  9. V2Ray 客户端使用教程: https://233now.com/post/4/

  10. 提示: 输入 v2ray url 可生成 vmess URL 链接 / 输入 v2ray qr 可生成二维码链接
複製代碼
.
  1. {
  2.    "log": {
  3.       "access": "/var/log/v2ray/access.log",
  4.       "error": "/var/log/v2ray/error.log",
  5.       "loglevel": "warning"
  6.    },
  7.    "inbounds": [
  8.       {
  9.          "port": 28952,
  10.          "protocol": "vmess",
  11.          "settings": {
  12.             "clients": [
  13.                {
  14.                   "id": "9ef8f590-607a-4cb8-9a5b-7231e521c25b",
  15.                   "level": 1,
  16.                   "alterId": 233
  17.                }
  18.             ]
  19.          },
  20.          "streamSettings": {
  21.             "network": "tcp",
  22.             "tcpSettings": {
  23.                "header": {
  24.                   "type": "http",
  25.                   "response": {
  26.                      "version": "1.1",
  27.                      "status": "200",
  28.                      "reason": "OK",
  29.                      "headers": {
  30.                         "Content-encoding": [
  31.                            "gzip"
  32.                         ],
  33.                         "Content-Type": [
  34.                            "text/html; charset=utf-8"
  35.                         ],
  36.                         "Cache-Control": [
  37.                            "no-cache"
  38.                         ],
  39.                         "Vary": [
  40.                            "Accept-Encoding"
  41.                         ],
  42.                         "X-Frame-Options": [
  43.                            "deny"
  44.                         ],
  45.                         "X-XSS-Protection": [
  46.                            "1; mode=block"
  47.                         ],
  48.                         "X-content-type-options": [
  49.                            "nosniff"
  50.                         ]
  51.                      }
  52.                   }
  53.                }
  54.             }
  55.          },
  56.          "sniffing": {
  57.             "enabled": true,
  58.             "destOverride": [
  59.                "http",
  60.                "tls"
  61.             ]
  62.          }
  63.       }
  64.       //include_ss
  65.       //include_socks
  66.       //include_mtproto
  67.       //include_config
  68.       //
  69.    ],
  70.    "outbounds": [
  71.       {
  72.          "protocol": "freedom",
  73.          "settings": {}
  74.       },
  75.       {
  76.          "protocol": "blackhole",
  77.          "settings": {},
  78.          "tag": "blocked"
  79.       },
  80.       {
  81.          "protocol": "freedom",
  82.          "settings": {},
  83.          "tag": "direct"
  84.       },
  85.       {
  86.          "protocol": "mtproto",
  87.          "settings": {},
  88.          "tag": "tg-out"
  89.       }
  90.    ],
  91.    "dns": {
  92.       "server": [
  93.          "8.8.8.8",
  94.          "8.8.4.4",
  95.          "1.1.1.1",
  96.          "1.0.0.1",
  97.          "localhost"
  98.       ]
  99.    },
  100.    "routing": {
  101.       "domainStrategy": "IPOnDemand",
  102.       "rules": [
  103.          {
  104.             "type": "field",
  105.             "ip": [
  106.                "0.0.0.0/8",
  107.                "10.0.0.0/8",
  108.                "100.64.0.0/10",
  109.                "127.0.0.0/8",
  110.                "169.254.0.0/16",
  111.                "172.16.0.0/12",
  112.                "192.0.0.0/24",
  113.                "192.0.2.0/24",
  114.                "192.168.0.0/16",
  115.                "198.18.0.0/15",
  116.                "198.51.100.0/24",
  117.                "203.0.113.0/24",
  118.                "::1/128",
  119.                "fc00::/7",
  120.                "fe80::/10"
  121.             ],
  122.             "outboundTag": "blocked"
  123.          },
  124.          {
  125.             "type": "field",
  126.             "inboundTag": ["tg-in"],
  127.             "outboundTag": "tg-out"
  128.          },
  129.          {
  130.             "type": "field",
  131.             "domain": [
  132.                "domain:epochtimes.com",
  133.                "domain:epochtimes.com.tw",
  134.                "domain:epochtimes.fr",
  135.                "domain:epochtimes.de",
  136.                "domain:epochtimes.jp",
  137.                "domain:epochtimes.ru",
  138.                "domain:epochtimes.co.il",
  139.                "domain:epochtimes.co.kr",
  140.                "domain:epochtimes-romania.com",
  141.                "domain:erabaru.net",
  142.                "domain:lagranepoca.com",
  143.                "domain:theepochtimes.com",
  144.                "domain:ntdtv.com",
  145.                "domain:ntd.tv",
  146.                "domain:ntdtv-dc.com",
  147.                "domain:ntdtv.com.tw",
  148.                "domain:minghui.org",
  149.                "domain:renminbao.com",
  150.                "domain:dafahao.com",
  151.                "domain:dongtaiwang.com",
  152.                "domain:falundafa.org",
  153.                "domain:wujieliulan.com",
  154.                "domain:ninecommentaries.com",
  155.                "domain:shenyun.com"
  156.             ],
  157.             "outboundTag": "blocked"
  158.          },
  159.          {
  160.             "type": "field",
  161.             "protocol": [
  162.                "bittorrent"
  163.             ],
  164.             "outboundTag": "blocked"
  165.          }
  166.          //include_ban_ad
  167.          //include_rules
  168.          //
  169.       ]
  170.    },
  171.    "transport": {
  172.       "kcpSettings": {
  173.          "uplinkCapacity": 100,
  174.          "downlinkCapacity": 100,
  175.          "congestion": true
  176.       },
  177.       "sockopt": {
  178.          "tcpFastOpen": true
  179.       }
  180.    }
  181. }
複製代碼
.

TOP

本帖最後由 角色 於 2019-1-14 17:59 編輯

3. WebSocket
  1. ---------- V2Ray 配置信息 -------------

  2. 地址 (Address) = a.b.c.d

  3. 端口 (Port) = 24022

  4. 用户ID (User ID / UUID) = cf29fa02-a5d5-41f6-9457-aef3b91732f5

  5. 额外ID (Alter Id) = 233

  6. 传输协议 (Network) = ws

  7. 伪装类型 (header type) = none

  8. ---------- END -------------

  9. V2Ray 客户端使用教程: https://233now.com/post/4/

  10. 提示: 输入 v2ray url 可生成 vmess URL 链接 / 输入 v2ray qr 可生成二维码链接
複製代碼
.
  1. {
  2.    "log": {
  3.       "access": "/var/log/v2ray/access.log",
  4.       "error": "/var/log/v2ray/error.log",
  5.       "loglevel": "warning"
  6.    },
  7.    "inbounds": [
  8.       {
  9.          "port": 24022,
  10.          "protocol": "vmess",
  11.          "settings": {
  12.             "clients": [
  13.                {
  14.                   "id": "cf29fa02-a5d5-41f6-9457-aef3b91732f5",
  15.                   "level": 1,
  16.                   "alterId": 233
  17.                }
  18.             ]
  19.          },
  20.          "streamSettings": {
  21.             "network": "ws"
  22.          },
  23.          "sniffing": {
  24.             "enabled": true,
  25.             "destOverride": [
  26.                "http",
  27.                "tls"
  28.             ]
  29.          }
  30.       }
  31.       //include_ss
  32.       //include_socks
  33.       //include_mtproto
  34.       //include_config
  35.       //
  36.    ],
  37.    "outbounds": [
  38.       {
  39.          "protocol": "freedom",
  40.          "settings": {}
  41.       },
  42.       {
  43.          "protocol": "blackhole",
  44.          "settings": {},
  45.          "tag": "blocked"
  46.       },
  47.       {
  48.          "protocol": "freedom",
  49.          "settings": {},
  50.          "tag": "direct"
  51.       },
  52.       {
  53.          "protocol": "mtproto",
  54.          "settings": {},
  55.          "tag": "tg-out"
  56.       }
  57.    ],
  58.    "dns": {
  59.       "server": [
  60.          "8.8.8.8",
  61.          "8.8.4.4",
  62.          "1.1.1.1",
  63.          "1.0.0.1",
  64.          "localhost"
  65.       ]
  66.    },
  67.    "routing": {
  68.       "domainStrategy": "IPOnDemand",
  69.       "rules": [
  70.          {
  71.             "type": "field",
  72.             "ip": [
  73.                "0.0.0.0/8",
  74.                "10.0.0.0/8",
  75.                "100.64.0.0/10",
  76.                "127.0.0.0/8",
  77.                "169.254.0.0/16",
  78.                "172.16.0.0/12",
  79.                "192.0.0.0/24",
  80.                "192.0.2.0/24",
  81.                "192.168.0.0/16",
  82.                "198.18.0.0/15",
  83.                "198.51.100.0/24",
  84.                "203.0.113.0/24",
  85.                "::1/128",
  86.                "fc00::/7",
  87.                "fe80::/10"
  88.             ],
  89.             "outboundTag": "blocked"
  90.          },
  91.          {
  92.             "type": "field",
  93.             "inboundTag": ["tg-in"],
  94.             "outboundTag": "tg-out"
  95.          },
  96.          {
  97.             "type": "field",
  98.             "domain": [
  99.                "domain:epochtimes.com",
  100.                "domain:epochtimes.com.tw",
  101.                "domain:epochtimes.fr",
  102.                "domain:epochtimes.de",
  103.                "domain:epochtimes.jp",
  104.                "domain:epochtimes.ru",
  105.                "domain:epochtimes.co.il",
  106.                "domain:epochtimes.co.kr",
  107.                "domain:epochtimes-romania.com",
  108.                "domain:erabaru.net",
  109.                "domain:lagranepoca.com",
  110.                "domain:theepochtimes.com",
  111.                "domain:ntdtv.com",
  112.                "domain:ntd.tv",
  113.                "domain:ntdtv-dc.com",
  114.                "domain:ntdtv.com.tw",
  115.                "domain:minghui.org",
  116.                "domain:renminbao.com",
  117.                "domain:dafahao.com",
  118.                "domain:dongtaiwang.com",
  119.                "domain:falundafa.org",
  120.                "domain:wujieliulan.com",
  121.                "domain:ninecommentaries.com",
  122.                "domain:shenyun.com"
  123.             ],
  124.             "outboundTag": "blocked"
  125.          },
  126.          {
  127.             "type": "field",
  128.             "protocol": [
  129.                "bittorrent"
  130.             ],
  131.             "outboundTag": "blocked"
  132.          }
  133.          //include_ban_ad
  134.          //include_rules
  135.          //
  136.       ]
  137.    },
  138.    "transport": {
  139.       "kcpSettings": {
  140.          "uplinkCapacity": 100,
  141.          "downlinkCapacity": 100,
  142.          "congestion": true
  143.       },
  144.       "sockopt": {
  145.          "tcpFastOpen": true
  146.       }
  147.    }
  148. }
複製代碼
.

TOP

本帖最後由 角色 於 2019-1-14 20:43 編輯

6. mKCP
  1. ---------- V2Ray 配置信息 -------------

  2. 地址 (Address) = a.b.c.d

  3. 端口 (Port) = 64938

  4. 用户ID (User ID / UUID) = 9d10744f-6000-4fbb-8fb9-01656a5e1923

  5. 额外ID (Alter Id) = 233

  6. 传输协议 (Network) = kcp

  7. 伪装类型 (header type) = none

  8. ---------- END -------------

  9. V2Ray 客户端使用教程: https://233now.com/post/4/

  10. 提示: 输入 v2ray url 可生成 vmess URL 链接 / 输入 v2ray qr 可生成二维码链接
複製代碼
.
  1. {
  2.    "log": {
  3.       "access": "/var/log/v2ray/access.log",
  4.       "error": "/var/log/v2ray/error.log",
  5.       "loglevel": "warning"
  6.    },
  7.    "inbounds": [
  8.       {
  9.          "port": 64938,
  10.          "protocol": "vmess",
  11.          "settings": {
  12.             "clients": [
  13.                {
  14.                   "id": "9d10744f-6000-4fbb-8fb9-01656a5e1923",
  15.                   "level": 1,
  16.                   "alterId": 233
  17.                }
  18.             ]
  19.          },
  20.          "streamSettings": {
  21.             "network": "kcp",
  22.             "kcpSettings": {
  23.                "header": {
  24.                   "type": "none"
  25.                }
  26.             }
  27.          },
  28.          "sniffing": {
  29.             "enabled": true,
  30.             "destOverride": [
  31.                "http",
  32.                "tls"
  33.             ]
  34.          }
  35.       }
  36.       //include_ss
  37.       //include_socks
  38.       //include_mtproto
  39.       //include_config
  40.       //
  41.    ],
  42.    "outbounds": [
  43.       {
  44.          "protocol": "freedom",
  45.          "settings": {}
  46.       },
  47.       {
  48.          "protocol": "blackhole",
  49.          "settings": {},
  50.          "tag": "blocked"
  51.         },
  52.         {
  53.          "protocol": "freedom",
  54.          "settings": {},
  55.          "tag": "direct"
  56.       },
  57.       {
  58.          "protocol": "mtproto",
  59.          "settings": {},
  60.          "tag": "tg-out"
  61.       }
  62.    ],
  63.    "dns": {
  64.       "server": [
  65.          "8.8.8.8",
  66.          "8.8.4.4",
  67.          "1.1.1.1",
  68.          "1.0.0.1",
  69.          "localhost"
  70.       ]
  71.    },
  72.    "routing": {
  73.       "domainStrategy": "IPOnDemand",      
  74.       "rules": [
  75.          {
  76.             "type": "field",
  77.             "ip": [
  78.                "0.0.0.0/8",
  79.                "10.0.0.0/8",
  80.                "100.64.0.0/10",
  81.                "127.0.0.0/8",
  82.                "169.254.0.0/16",
  83.                "172.16.0.0/12",
  84.                "192.0.0.0/24",
  85.                "192.0.2.0/24",
  86.                "192.168.0.0/16",
  87.                "198.18.0.0/15",
  88.                "198.51.100.0/24",
  89.                "203.0.113.0/24",
  90.                "::1/128",
  91.                "fc00::/7",
  92.                "fe80::/10"
  93.             ],
  94.             "outboundTag": "blocked"
  95.          },
  96.          {
  97.             "type": "field",
  98.             "inboundTag": ["tg-in"],
  99.             "outboundTag": "tg-out"
  100.          },
  101.          {
  102.             "type": "field",
  103.             "domain": [
  104.                "domain:epochtimes.com",
  105.                "domain:epochtimes.com.tw",
  106.                "domain:epochtimes.fr",
  107.                "domain:epochtimes.de",
  108.                "domain:epochtimes.jp",
  109.                "domain:epochtimes.ru",
  110.                "domain:epochtimes.co.il",
  111.                "domain:epochtimes.co.kr",
  112.                "domain:epochtimes-romania.com",
  113.                "domain:erabaru.net",
  114.                "domain:lagranepoca.com",
  115.                "domain:theepochtimes.com",
  116.                "domain:ntdtv.com",
  117.                "domain:ntd.tv",
  118.                "domain:ntdtv-dc.com",
  119.                "domain:ntdtv.com.tw",
  120.                "domain:minghui.org",
  121.                "domain:renminbao.com",
  122.                "domain:dafahao.com",
  123.                "domain:dongtaiwang.com",
  124.                "domain:falundafa.org",
  125.                "domain:wujieliulan.com",
  126.                "domain:ninecommentaries.com",
  127.                "domain:shenyun.com"
  128.             ],
  129.             "outboundTag": "blocked"
  130.          },
  131.          {
  132.             "type": "field",
  133.             "protocol": [
  134.                "bittorrent"
  135.             ],
  136.             "outboundTag": "blocked"
  137.          }
  138.          //include_ban_ad
  139.          //include_rules
  140.          //
  141.       ]
  142.    },
  143.    "transport": {
  144.       "kcpSettings": {
  145.          "uplinkCapacity": 100,
  146.          "downlinkCapacity": 100,
  147.          "congestion": true
  148.       },
  149.       "sockopt": {
  150.          "tcpFastOpen": true
  151.       }
  152.    }
  153. }
複製代碼
.

TOP

本帖最後由 角色 於 2019-1-16 20:56 編輯

7. mKCP_utp
  1. BifrostV client需要更改的地方:
  2. 1、用户等级:1
  3. 2、QUIC加密方式:aes-128-gcm
  4. 3、包头类型:utp

  5. ---------- V2Ray 配置信息 -------------

  6. 地址 (Address) = a.b.c.d

  7. 端口 (Port) = 58729

  8. 用户ID (User ID / UUID) = 13276f2d-0073-477d-95b6-0e6ffe99ef6e

  9. 额外ID (Alter Id) = 233

  10. 传输协议 (Network) = kcp

  11. 伪装类型 (header type) = utp

  12. ---------- END -------------

  13. V2Ray 客户端使用教程: https://233now.com/post/4/

  14. 提示: 输入 v2ray url 可生成 vmess URL 链接 / 输入 v2ray qr 可生成二维码链接
複製代碼
.
  1. {
  2.    "log": {
  3.       "access": "/var/log/v2ray/access.log",
  4.       "error": "/var/log/v2ray/error.log",
  5.       "loglevel": "warning"
  6.    },
  7.    "inbounds": [
  8.       {
  9.          "port": 58729,
  10.          "protocol": "vmess",
  11.          "settings": {
  12.             "clients": [
  13.                {
  14.                   "id": "13276f2d-0073-477d-95b6-0e6ffe99ef6e",
  15.                   "level": 1,
  16.                   "alterId": 233
  17.                }
  18.             ]
  19.          },
  20.          "streamSettings": {
  21.             "network": "kcp",
  22.             "kcpSettings": {
  23.                "header": {
  24.                   "type": "utp"
  25.                }
  26.             }
  27.          },
  28.          "sniffing": {
  29.             "enabled": true,
  30.             "destOverride": [
  31.                "http",
  32.                "tls"
  33.             ]
  34.          }
  35.       }
  36.       //include_ss
  37.       //include_socks
  38.       //include_mtproto
  39.       //include_config
  40.       //
  41.    ],
  42.    "outbounds": [
  43.       {
  44.          "protocol": "freedom",
  45.          "settings": {}
  46.       },
  47.       {
  48.          "protocol": "blackhole",
  49.          "settings": {},
  50.          "tag": "blocked"
  51.         },
  52.         {
  53.          "protocol": "freedom",
  54.          "settings": {},
  55.          "tag": "direct"
  56.       },
  57.       {
  58.          "protocol": "mtproto",
  59.          "settings": {},
  60.          "tag": "tg-out"
  61.       }
  62.    ],
  63.    "dns": {
  64.       "server": [
  65.          "8.8.8.8",
  66.          "8.8.4.4",
  67.          "1.1.1.1",
  68.          "1.0.0.1",
  69.          "localhost"
  70.       ]
  71.    },
  72.    "routing": {
  73.       "domainStrategy": "IPOnDemand",      
  74.       "rules": [
  75.          {
  76.             "type": "field",
  77.             "ip": [
  78.                "0.0.0.0/8",
  79.                "10.0.0.0/8",
  80.                "100.64.0.0/10",
  81.                "127.0.0.0/8",
  82.                "169.254.0.0/16",
  83.                "172.16.0.0/12",
  84.                "192.0.0.0/24",
  85.                "192.0.2.0/24",
  86.                "192.168.0.0/16",
  87.                "198.18.0.0/15",
  88.                "198.51.100.0/24",
  89.                "203.0.113.0/24",
  90.                "::1/128",
  91.                "fc00::/7",
  92.                "fe80::/10"
  93.             ],
  94.             "outboundTag": "blocked"
  95.          },
  96.          {
  97.             "type": "field",
  98.             "inboundTag": ["tg-in"],
  99.             "outboundTag": "tg-out"
  100.          },
  101.          {
  102.             "type": "field",
  103.             "domain": [
  104.                "domain:epochtimes.com",
  105.                "domain:epochtimes.com.tw",
  106.                "domain:epochtimes.fr",
  107.                "domain:epochtimes.de",
  108.                "domain:epochtimes.jp",
  109.                "domain:epochtimes.ru",
  110.                "domain:epochtimes.co.il",
  111.                "domain:epochtimes.co.kr",
  112.                "domain:epochtimes-romania.com",
  113.                "domain:erabaru.net",
  114.                "domain:lagranepoca.com",
  115.                "domain:theepochtimes.com",
  116.                "domain:ntdtv.com",
  117.                "domain:ntd.tv",
  118.                "domain:ntdtv-dc.com",
  119.                "domain:ntdtv.com.tw",
  120.                "domain:minghui.org",
  121.                "domain:renminbao.com",
  122.                "domain:dafahao.com",
  123.                "domain:dongtaiwang.com",
  124.                "domain:falundafa.org",
  125.                "domain:wujieliulan.com",
  126.                "domain:ninecommentaries.com",
  127.                "domain:shenyun.com"
  128.             ],
  129.             "outboundTag": "blocked"
  130.          },
  131.          {
  132.             "type": "field",
  133.             "protocol": [
  134.                "bittorrent"
  135.            ],
  136.            "outboundTag": "blocked"
  137.          }
  138.          //include_ban_ad
  139.          //include_rules
  140.          //
  141.       ]
  142.    },
  143.    "transport": {
  144.       "kcpSettings": {
  145.          "uplinkCapacity": 100,
  146.          "downlinkCapacity": 100,
  147.          "congestion": true
  148.       },
  149.       "sockopt": {
  150.          "tcpFastOpen": true
  151.       }
  152.    }
  153. }
複製代碼
.

TOP

7. xxx
  1. ---------- V2Ray 配置信息 -------------

  2. 地址 (Address) = a.b.c.d

  3. 端口 (Port) = 58729

  4. 用户ID (User ID / UUID) = 13276f2d-0073-477d-95b6-0e6ffe99ef6e

  5. 额外ID (Alter Id) = 233

  6. 传输协议 (Network) = kcp

  7. 伪装类型 (header type) = utp

  8. ---------- END -------------

  9. V2Ray 客户端使用教程: https://233now.com/post/4/

  10. 提示: 输入 v2ray url 可生成 vmess URL 链接 / 输入 v2ray qr 可生成二维码链接
複製代碼
.
  1. {
  2.    "log": {
  3.       "access": "/var/log/v2ray/access.log",
  4.       "error": "/var/log/v2ray/error.log",
  5.       "loglevel": "warning"
  6.    },
  7.    "inbounds": [
  8.       {
  9.          "port": 58729,
  10.          "protocol": "vmess",
  11.          "settings": {
  12.             "clients": [
  13.                {
  14.                   "id": "13276f2d-0073-477d-95b6-0e6ffe99ef6e",
  15.                   "level": 1,
  16.                   "alterId": 233
  17.                }
  18.             ]
  19.          },
  20.          "streamSettings": {
  21.             "network": "kcp",
  22.             "kcpSettings": {
  23.                "header": {
  24.                   "type": "utp"
  25.                }
  26.             }
  27.          },
  28.          "sniffing": {
  29.             "enabled": true,
  30.             "destOverride": [
  31.                "http",
  32.                "tls"
  33.             ]
  34.          }
  35.       }
  36.       //include_ss
  37.       //include_socks
  38.       //include_mtproto
  39.       //include_config
  40.       //
  41.    ],
  42.    "outbounds": [
  43.       {
  44.          "protocol": "freedom",
  45.          "settings": {}
  46.       },
  47.       {
  48.          "protocol": "blackhole",
  49.          "settings": {},
  50.          "tag": "blocked"
  51.         },
  52.         {
  53.          "protocol": "freedom",
  54.          "settings": {},
  55.          "tag": "direct"
  56.       },
  57.       {
  58.          "protocol": "mtproto",
  59.          "settings": {},
  60.          "tag": "tg-out"
  61.       }
  62.    ],
  63.    "dns": {
  64.       "server": [
  65.          "8.8.8.8",
  66.          "8.8.4.4",
  67.          "1.1.1.1",
  68.          "1.0.0.1",
  69.          "localhost"
  70.       ]
  71.    },
  72.    "routing": {
  73.       "domainStrategy": "IPOnDemand",      
  74.       "rules": [
  75.          {
  76.             "type": "field",
  77.             "ip": [
  78.                "0.0.0.0/8",
  79.                "10.0.0.0/8",
  80.                "100.64.0.0/10",
  81.                "127.0.0.0/8",
  82.                "169.254.0.0/16",
  83.                "172.16.0.0/12",
  84.                "192.0.0.0/24",
  85.                "192.0.2.0/24",
  86.                "192.168.0.0/16",
  87.                "198.18.0.0/15",
  88.                "198.51.100.0/24",
  89.                "203.0.113.0/24",
  90.                "::1/128",
  91.                "fc00::/7",
  92.                "fe80::/10"
  93.             ],
  94.             "outboundTag": "blocked"
  95.          },
  96.          {
  97.             "type": "field",
  98.             "inboundTag": ["tg-in"],
  99.             "outboundTag": "tg-out"
  100.          },
  101.          {
  102.             "type": "field",
  103.             "domain": [
  104.                "domain:epochtimes.com",
  105.                "domain:epochtimes.com.tw",
  106.                "domain:epochtimes.fr",
  107.                "domain:epochtimes.de",
  108.                "domain:epochtimes.jp",
  109.                "domain:epochtimes.ru",
  110.                "domain:epochtimes.co.il",
  111.                "domain:epochtimes.co.kr",
  112.                "domain:epochtimes-romania.com",
  113.                "domain:erabaru.net",
  114.                "domain:lagranepoca.com",
  115.                "domain:theepochtimes.com",
  116.                "domain:ntdtv.com",
  117.                "domain:ntd.tv",
  118.                "domain:ntdtv-dc.com",
  119.                "domain:ntdtv.com.tw",
  120.                "domain:minghui.org",
  121.                "domain:renminbao.com",
  122.                "domain:dafahao.com",
  123.                "domain:dongtaiwang.com",
  124.                "domain:falundafa.org",
  125.                "domain:wujieliulan.com",
  126.                "domain:ninecommentaries.com",
  127.                "domain:shenyun.com"
  128.             ],
  129.             "outboundTag": "blocked"
  130.          },
  131.          {
  132.             "type": "field",
  133.             "protocol": [
  134.                "bittorrent"
  135.            ],
  136.            "outboundTag": "blocked"
  137.          }
  138.          //include_ban_ad
  139.          //include_rules
  140.          //
  141.       ]
  142.    },
  143.    "transport": {
  144.       "kcpSettings": {
  145.          "uplinkCapacity": 100,
  146.          "downlinkCapacity": 100,
  147.          "congestion": true
  148.       },
  149.       "sockopt": {
  150.          "tcpFastOpen": true
  151.       }
  152.    }
  153. }
複製代碼
.

TOP

本帖最後由 角色 於 2019-1-14 21:03 編輯

8. mKCP_srtp
  1. ---------- V2Ray 配置信息 -------------

  2. 地址 (Address) = a.b.c.d

  3. 端口 (Port) = 37150

  4. 用户ID (User ID / UUID) = 7d20b9d8-2954-4ecb-a1cd-72af214b2c64

  5. 额外ID (Alter Id) = 233

  6. 传输协议 (Network) = kcp

  7. 伪装类型 (header type) = srtp

  8. ---------- END -------------

  9. V2Ray 客户端使用教程: https://233now.com/post/4/

  10. 提示: 输入 v2ray url 可生成 vmess URL 链接 / 输入 v2ray qr 可生成二维码链接
複製代碼
.
  1. {
  2.    "log": {
  3.       "access": "/var/log/v2ray/access.log",
  4.       "error": "/var/log/v2ray/error.log",
  5.       "loglevel": "warning"
  6.    },
  7.    "inbounds": [
  8.       {
  9.          "port": 37150,
  10.          "protocol": "vmess",
  11.          "settings": {
  12.             "clients": [
  13.                {
  14.                   "id": "7d20b9d8-2954-4ecb-a1cd-72af214b2c64",
  15.                   "level": 1,
  16.                   "alterId": 233
  17.                }
  18.             ]
  19.          },
  20.          "streamSettings": {
  21.             "network": "kcp",
  22.             "kcpSettings": {
  23.                "header": {
  24.                   "type": "srtp"
  25.                }
  26.             }
  27.          },
  28.          "sniffing": {
  29.             "enabled": true,
  30.             "destOverride": [
  31.                "http",
  32.                "tls"
  33.             ]
  34.          }
  35.       }
  36.       //include_ss
  37.       //include_socks
  38.       //include_mtproto
  39.       //include_config
  40.       //
  41.    ],
  42.    "outbounds": [
  43.       {
  44.          "protocol": "freedom",
  45.          "settings": {}
  46.       },
  47.       {
  48.          "protocol": "blackhole",
  49.          "settings": {},
  50.          "tag": "blocked"
  51.         },
  52.         {
  53.          "protocol": "freedom",
  54.          "settings": {},
  55.          "tag": "direct"
  56.       },
  57.       {
  58.          "protocol": "mtproto",
  59.          "settings": {},
  60.          "tag": "tg-out"
  61.       }
  62.    ],
  63.    "dns": {
  64.       "server": [
  65.          "8.8.8.8",
  66.          "8.8.4.4",
  67.          "1.1.1.1",
  68.          "1.0.0.1",
  69.          "localhost"
  70.       ]
  71.    },
  72.    "routing": {
  73.       "domainStrategy": "IPOnDemand",      
  74.       "rules": [
  75.          {
  76.             "type": "field",
  77.             "ip": [
  78.                "0.0.0.0/8",
  79.                "10.0.0.0/8",
  80.                "100.64.0.0/10",
  81.                "127.0.0.0/8",
  82.                "169.254.0.0/16",
  83.                "172.16.0.0/12",
  84.                "192.0.0.0/24",
  85.                "192.0.2.0/24",
  86.                "192.168.0.0/16",
  87.                "198.18.0.0/15",
  88.                "198.51.100.0/24",
  89.                "203.0.113.0/24",
  90.                "::1/128",
  91.                "fc00::/7",
  92.                "fe80::/10"
  93.             ],
  94.             "outboundTag": "blocked"
  95.          },
  96.          {
  97.             "type": "field",
  98.             "inboundTag": ["tg-in"],
  99.             "outboundTag": "tg-out"
  100.          },
  101.          {
  102.             "type": "field",
  103.             "domain": [
  104.                "domain:epochtimes.com",
  105.                "domain:epochtimes.com.tw",
  106.                "domain:epochtimes.fr",
  107.                "domain:epochtimes.de",
  108.                "domain:epochtimes.jp",
  109.                "domain:epochtimes.ru",
  110.                "domain:epochtimes.co.il",
  111.                "domain:epochtimes.co.kr",
  112.                "domain:epochtimes-romania.com",
  113.                "domain:erabaru.net",
  114.                "domain:lagranepoca.com",
  115.                "domain:theepochtimes.com",
  116.                "domain:ntdtv.com",
  117.                "domain:ntd.tv",
  118.                "domain:ntdtv-dc.com",
  119.                "domain:ntdtv.com.tw",
  120.                "domain:minghui.org",
  121.                "domain:renminbao.com",
  122.                "domain:dafahao.com",
  123.                "domain:dongtaiwang.com",
  124.                "domain:falundafa.org",
  125.                "domain:wujieliulan.com",
  126.                "domain:ninecommentaries.com",
  127.                "domain:shenyun.com"
  128.             ],
  129.             "outboundTag": "blocked"
  130.          },
  131.          {
  132.             "type": "field",
  133.             "protocol": [
  134.                "bittorrent"
  135.             ],
  136.             "outboundTag": "blocked"
  137.          }
  138.          //include_ban_ad
  139.          //include_rules
  140.          //
  141.       ]
  142.    },
  143.    "transport": {
  144.       "kcpSettings": {
  145.          "uplinkCapacity": 100,
  146.          "downlinkCapacity": 100,
  147.          "congestion": true
  148.       },
  149.       "sockopt": {
  150.          "tcpFastOpen": true
  151.       }
  152.    }
  153. }
複製代碼
.

TOP

本帖最後由 角色 於 2019-1-15 00:11 編輯

9. mKCP_wechat-video
  1. ---------- V2Ray 配置信息 -------------

  2. 地址 (Address) = a.b.c.d

  3. 端口 (Port) = 42882

  4. 用户ID (User ID / UUID) = 3a40ad9d-d535-44ed-9ebb-52925cd6b9f1

  5. 额外ID (Alter Id) = 233

  6. 传输协议 (Network) = kcp

  7. 伪装类型 (header type) = wechat-video

  8. ---------- END -------------

  9. V2Ray 客户端使用教程: https://233now.com/post/4/

  10. 提示: 输入 v2ray url 可生成 vmess URL 链接 / 输入 v2ray qr 可生成二维码链接
複製代碼
.
  1. {
  2.    "log": {
  3.       "access": "/var/log/v2ray/access.log",
  4.       "error": "/var/log/v2ray/error.log",
  5.       "loglevel": "warning"
  6.    },
  7.    "inbounds": [
  8.       {
  9.          "port": 42882,
  10.          "protocol": "vmess",
  11.          "settings": {
  12.             "clients": [
  13.                {
  14.                   "id": "3a40ad9d-d535-44ed-9ebb-52925cd6b9f1",
  15.                   "level": 1,
  16.                   "alterId": 233
  17.                }
  18.             ]
  19.          },
  20.          "streamSettings": {
  21.             "network": "kcp",
  22.             "kcpSettings": {
  23.                "header": {
  24.                   "type": "wechat-video"
  25.                }
  26.             }
  27.          },
  28.          "sniffing": {
  29.             "enabled": true,
  30.             "destOverride": [
  31.                "http",
  32.                "tls"
  33.             ]
  34.          }
  35.       }
  36.       //include_ss
  37.       //include_socks
  38.       //include_mtproto
  39.       //include_config
  40.       //
  41.    ],
  42.    "outbounds": [
  43.       {
  44.          "protocol": "freedom",
  45.          "settings": {}
  46.       },
  47.       {
  48.          "protocol": "blackhole",
  49.          "settings": {},
  50.          "tag": "blocked"
  51.         },
  52.         {
  53.          "protocol": "freedom",
  54.          "settings": {},
  55.          "tag": "direct"
  56.       },
  57.       {
  58.          "protocol": "mtproto",
  59.          "settings": {},
  60.          "tag": "tg-out"
  61.       }
  62.    ],
  63.    "dns": {
  64.       "server": [
  65.          "8.8.8.8",
  66.          "8.8.4.4",
  67.          "1.1.1.1",
  68.          "1.0.0.1",
  69.          "localhost"
  70.       ]
  71.    },
  72.    "routing": {
  73.       "domainStrategy": "IPOnDemand",      
  74.       "rules": [
  75.          {
  76.             "type": "field",
  77.             "ip": [
  78.                "0.0.0.0/8",
  79.                "10.0.0.0/8",
  80.                "100.64.0.0/10",
  81.                "127.0.0.0/8",
  82.                "169.254.0.0/16",
  83.                "172.16.0.0/12",
  84.                "192.0.0.0/24",
  85.                "192.0.2.0/24",
  86.                "192.168.0.0/16",
  87.                "198.18.0.0/15",
  88.                "198.51.100.0/24",
  89.                "203.0.113.0/24",
  90.                "::1/128",
  91.                "fc00::/7",
  92.                "fe80::/10"
  93.             ],
  94.             "outboundTag": "blocked"
  95.          },
  96.          {
  97.             "type": "field",
  98.             "inboundTag": ["tg-in"],
  99.             "outboundTag": "tg-out"
  100.          },
  101.          {
  102.             "type": "field",
  103.             "domain": [
  104.                "domain:epochtimes.com",
  105.                "domain:epochtimes.com.tw",
  106.                "domain:epochtimes.fr",
  107.                "domain:epochtimes.de",
  108.                "domain:epochtimes.jp",
  109.                "domain:epochtimes.ru",
  110.                "domain:epochtimes.co.il",
  111.                "domain:epochtimes.co.kr",
  112.                "domain:epochtimes-romania.com",
  113.                "domain:erabaru.net",
  114.                "domain:lagranepoca.com",
  115.                "domain:theepochtimes.com",
  116.                "domain:ntdtv.com",
  117.                "domain:ntd.tv",
  118.                "domain:ntdtv-dc.com",
  119.                "domain:ntdtv.com.tw",
  120.                "domain:minghui.org",
  121.                "domain:renminbao.com",
  122.                "domain:dafahao.com",
  123.                "domain:dongtaiwang.com",
  124.                "domain:falundafa.org",
  125.                "domain:wujieliulan.com",
  126.                "domain:ninecommentaries.com",
  127.                "domain:shenyun.com"
  128.             ],
  129.             "outboundTag": "blocked"
  130.          },
  131.          {
  132.             "type": "field",
  133.             "protocol": [
  134.                "bittorrent"
  135.             ],
  136.             "outboundTag": "blocked"
  137.          }
  138.          //include_ban_ad
  139.          //include_rules
  140.          //
  141.       ]
  142.    },
  143.    "transport": {
  144.       "kcpSettings": {
  145.          "uplinkCapacity": 100,
  146.          "downlinkCapacity": 100,
  147.          "congestion": true
  148.       },
  149.       "sockopt": {
  150.          "tcpFastOpen": true
  151.       }
  152.    }
  153. }
複製代碼

TOP

本帖最後由 角色 於 2019-1-15 01:08 編輯

10. mKCP_dtls
  1. ---------- V2Ray 配置信息 -------------

  2. 地址 (Address) = a.b.c.d

  3. 端口 (Port) = 60058

  4. 用户ID (User ID / UUID) = 742ac4ae-dada-4972-85ff-9d54074d011e

  5. 额外ID (Alter Id) = 233

  6. 传输协议 (Network) = kcp

  7. 伪装类型 (header type) = dtls

  8. ---------- END -------------

  9. V2Ray 客户端使用教程: https://233now.com/post/4/

  10. 提示: 输入 v2ray url 可生成 vmess URL 链接 / 输入 v2ray qr 可生成二维码链接
複製代碼
.
  1. {
  2.    "log": {
  3.       "access": "/var/log/v2ray/access.log",
  4.       "error": "/var/log/v2ray/error.log",
  5.       "loglevel": "warning"
  6.    },
  7.    "inbounds": [
  8.       {
  9.          "port": 60058,
  10.          "protocol": "vmess",
  11.          "settings": {
  12.             "clients": [
  13.                {
  14.                   "id": "742ac4ae-dada-4972-85ff-9d54074d011e",
  15.                   "level": 1,
  16.                   "alterId": 233
  17.                }
  18.             ]
  19.          },
  20.          "streamSettings": {
  21.             "network": "kcp",
  22.             "kcpSettings": {
  23.                "header": {
  24.                   "type": "dtls"
  25.                }
  26.             }
  27.          },
  28.          "sniffing": {
  29.             "enabled": true,
  30.             "destOverride": [
  31.                "http",
  32.                "tls"
  33.             ]
  34.          }
  35.       }
  36.       //include_ss
  37.       //include_socks
  38.       //include_mtproto
  39.       //include_config
  40.       //
  41.    ],
  42.    "outbounds": [
  43.       {
  44.          "protocol": "freedom",
  45.          "settings": {}
  46.       },
  47.       {
  48.          "protocol": "blackhole",
  49.          "settings": {},
  50.          "tag": "blocked"
  51.         },
  52.         {
  53.          "protocol": "freedom",
  54.          "settings": {},
  55.          "tag": "direct"
  56.       },
  57.       {
  58.          "protocol": "mtproto",
  59.          "settings": {},
  60.          "tag": "tg-out"
  61.       }
  62.    ],
  63.    "dns": {
  64.       "server": [
  65.          "8.8.8.8",
  66.          "8.8.4.4",
  67.          "1.1.1.1",
  68.          "1.0.0.1",
  69.          "localhost"
  70.       ]
  71.    },
  72.    "routing": {
  73.       "domainStrategy": "IPOnDemand",      
  74.       "rules": [
  75.          {
  76.             "type": "field",
  77.             "ip": [
  78.                "0.0.0.0/8",
  79.                "10.0.0.0/8",
  80.                "100.64.0.0/10",
  81.                "127.0.0.0/8",
  82.                "169.254.0.0/16",
  83.                "172.16.0.0/12",
  84.                "192.0.0.0/24",
  85.                "192.0.2.0/24",
  86.                "192.168.0.0/16",
  87.                "198.18.0.0/15",
  88.                "198.51.100.0/24",
  89.                "203.0.113.0/24",
  90.                "::1/128",
  91.                "fc00::/7",
  92.                "fe80::/10"
  93.             ],
  94.             "outboundTag": "blocked"
  95.          },
  96.          {
  97.             "type": "field",
  98.             "inboundTag": ["tg-in"],
  99.             "outboundTag": "tg-out"
  100.          },
  101.          {
  102.             "type": "field",
  103.             "domain": [
  104.                "domain:epochtimes.com",
  105.                "domain:epochtimes.com.tw",
  106.                "domain:epochtimes.fr",
  107.                "domain:epochtimes.de",
  108.                "domain:epochtimes.jp",
  109.                "domain:epochtimes.ru",
  110.                "domain:epochtimes.co.il",
  111.                "domain:epochtimes.co.kr",
  112.                "domain:epochtimes-romania.com",
  113.                "domain:erabaru.net",
  114.                "domain:lagranepoca.com",
  115.                "domain:theepochtimes.com",
  116.                "domain:ntdtv.com",
  117.                "domain:ntd.tv",
  118.                "domain:ntdtv-dc.com",
  119.                "domain:ntdtv.com.tw",
  120.                "domain:minghui.org",
  121.                "domain:renminbao.com",
  122.                "domain:dafahao.com",
  123.                "domain:dongtaiwang.com",
  124.                "domain:falundafa.org",
  125.                "domain:wujieliulan.com",
  126.                "domain:ninecommentaries.com",
  127.                "domain:shenyun.com"
  128.             ],
  129.             "outboundTag": "blocked"
  130.          },
  131.          {
  132.             "type": "field",
  133.             "protocol": [
  134.                "bittorrent"
  135.             ],
  136.             "outboundTag": "blocked"
  137.          }
  138.          //include_ban_ad
  139.          //include_rules
  140.          //
  141.       ]
  142.    },
  143.    "transport": {
  144.       "kcpSettings": {
  145.          "uplinkCapacity": 100,
  146.          "downlinkCapacity": 100,
  147.          "congestion": true
  148.         },
  149.       "sockopt": {
  150.          "tcpFastOpen": true
  151.       }
  152.    }
  153. }
複製代碼
.

TOP

11. mKCP_wireguard
  1. ---------- V2Ray 配置信息 -------------

  2. 地址 (Address) = a.b.c.d

  3. 端口 (Port) = 62567

  4. 用户ID (User ID / UUID) = 7767b4de-cef0-4893-8dc1-e7f10ff0cb08

  5. 额外ID (Alter Id) = 233

  6. 传输协议 (Network) = kcp

  7. 伪装类型 (header type) = wireguard

  8. ---------- END -------------

  9. V2Ray 客户端使用教程: https://233now.com/post/4/

  10. 提示: 输入 v2ray url 可生成 vmess URL 链接 / 输入 v2ray qr 可生成二维码链接
複製代碼
.
  1. {
  2.    "log": {
  3.       "access": "/var/log/v2ray/access.log",
  4.       "error": "/var/log/v2ray/error.log",
  5.       "loglevel": "warning"
  6.    },
  7.    "inbounds": [
  8.       {
  9.          "port": 62567,
  10.          "protocol": "vmess",
  11.          "settings": {
  12.             "clients": [
  13.                {
  14.                   "id": "7767b4de-cef0-4893-8dc1-e7f10ff0cb08",
  15.                   "level": 1,
  16.                   "alterId": 233
  17.                }
  18.             ]
  19.          },
  20.          "streamSettings": {
  21.             "network": "kcp",
  22.             "kcpSettings": {
  23.                "header": {
  24.                   "type": "wireguard"
  25.                }
  26.             }
  27.          },
  28.          "sniffing": {
  29.             "enabled": true,
  30.             "destOverride": [
  31.                "http",
  32.                "tls"
  33.             ]
  34.          }
  35.       }
  36.       //include_ss
  37.       //include_socks
  38.       //include_mtproto
  39.       //include_config
  40.       //
  41.    ],
  42.    "outbounds": [
  43.       {
  44.          "protocol": "freedom",
  45.          "settings": {}
  46.       },
  47.       {
  48.          "protocol": "blackhole",
  49.          "settings": {},
  50.          "tag": "blocked"
  51.         },
  52.         {
  53.          "protocol": "freedom",
  54.          "settings": {},
  55.          "tag": "direct"
  56.       },
  57.       {
  58.          "protocol": "mtproto",
  59.          "settings": {},
  60.          "tag": "tg-out"
  61.       }
  62.    ],
  63.    "dns": {
  64.       "server": [
  65.          "8.8.8.8",
  66.          "8.8.4.4",
  67.          "1.1.1.1",
  68.          "1.0.0.1",
  69.          "localhost"
  70.       ]
  71.    },
  72.    "routing": {
  73.       "domainStrategy": "IPOnDemand",      
  74.       "rules": [
  75.          {
  76.             "type": "field",
  77.             "ip": [
  78.                "0.0.0.0/8",
  79.                "10.0.0.0/8",
  80.                "100.64.0.0/10",
  81.                "127.0.0.0/8",
  82.                "169.254.0.0/16",
  83.                "172.16.0.0/12",
  84.                "192.0.0.0/24",
  85.                "192.0.2.0/24",
  86.                "192.168.0.0/16",
  87.                "198.18.0.0/15",
  88.                "198.51.100.0/24",
  89.                "203.0.113.0/24",
  90.                "::1/128",
  91.                "fc00::/7",
  92.                "fe80::/10"
  93.             ],
  94.             "outboundTag": "blocked"
  95.          },
  96.          {
  97.             "type": "field",
  98.             "inboundTag": ["tg-in"],
  99.             "outboundTag": "tg-out"
  100.          },
  101.          {
  102.             "type": "field",
  103.             "domain": [
  104.                "domain:epochtimes.com",
  105.                "domain:epochtimes.com.tw",
  106.                "domain:epochtimes.fr",
  107.                "domain:epochtimes.de",
  108.                "domain:epochtimes.jp",
  109.                "domain:epochtimes.ru",
  110.                "domain:epochtimes.co.il",
  111.                "domain:epochtimes.co.kr",
  112.                "domain:epochtimes-romania.com",
  113.                "domain:erabaru.net",
  114.                "domain:lagranepoca.com",
  115.                "domain:theepochtimes.com",
  116.                "domain:ntdtv.com",
  117.                "domain:ntd.tv",
  118.                "domain:ntdtv-dc.com",
  119.                "domain:ntdtv.com.tw",
  120.                "domain:minghui.org",
  121.                "domain:renminbao.com",
  122.                "domain:dafahao.com",
  123.                "domain:dongtaiwang.com",
  124.                "domain:falundafa.org",
  125.                "domain:wujieliulan.com",
  126.                "domain:ninecommentaries.com",
  127.                "domain:shenyun.com"
  128.             ],
  129.             "outboundTag": "blocked"
  130.          },
  131.          {
  132.             "type": "field",
  133.             "protocol": [
  134.                 "bittorrent"
  135.             ],
  136.             "outboundTag": "blocked"
  137.          }
  138.          //include_ban_ad
  139.          //include_rules
  140.          //
  141.       ]
  142.    },
  143.    "transport": {
  144.       "kcpSettings": {
  145.          "uplinkCapacity": 100,
  146.          "downlinkCapacity": 100,
  147.          "congestion": true
  148.       },
  149.       "sockopt": {
  150.          "tcpFastOpen": true
  151.       }
  152.    }
  153. }
複製代碼
.

TOP

本帖最後由 角色 於 2019-1-15 11:38 編輯

12. QUIC

v2ray qr不能正常工作
  1. ---------- V2Ray 配置信息 -------------

  2. 地址 (Address) = a.b.c.d

  3. 端口 (Port) = 22381

  4. 用户ID (User ID / UUID) = 8fe9f18b-49a5-436d-a86f-eab8c8bf19d4

  5. 额外ID (Alter Id) = 233

  6. 传输协议 (Network) = quic

  7. 伪装类型 (header type) = none

  8. ---------- END -------------

  9. V2Ray 客户端使用教程: https://233now.com/post/4/

  10. 提示: 输入 v2ray url 可生成 vmess URL 链接 / 输入 v2ray qr 可生成二维码链接
複製代碼
.
  1. {
  2.   "log": {
  3.     "access": "/var/log/v2ray/access.log",
  4.     "error": "/var/log/v2ray/error.log",
  5.     "loglevel": "warning"
  6.   },
  7.   "inbounds": [
  8.     {
  9.       "port": 22381,
  10.       "protocol": "vmess",
  11.       "settings": {
  12.         "clients": [
  13.           {
  14.             "id": "8fe9f18b-49a5-436d-a86f-eab8c8bf19d4",
  15.             "level": 1,
  16.             "alterId": 233
  17.           }
  18.         ]
  19.       },
  20.       "streamSettings": {
  21.         "network": "quic",
  22.         "quicSettings": {
  23.           "security": "aes-128-gcm",
  24.           "key": "",
  25.           "header": {
  26.             "type": "none"
  27.           }
  28.         }
  29.       },
  30.       "sniffing": {
  31.         "enabled": true,
  32.         "destOverride": [
  33.           "http",
  34.           "tls"
  35.         ]
  36.       }
  37.     }
  38.     //include_ss
  39.     //include_socks
  40.     //include_mtproto
  41.     //include_config
  42.     //
  43.   ],
  44.   "outbounds": [
  45.     {
  46.       "protocol": "freedom",
  47.       "settings": {}
  48.     },
  49.     {
  50.       "protocol": "blackhole",
  51.       "settings": {},
  52.       "tag": "blocked"
  53.         },
  54.         {
  55.       "protocol": "freedom",
  56.       "settings": {},
  57.       "tag": "direct"
  58.     },
  59.     {
  60.       "protocol": "mtproto",
  61.       "settings": {},
  62.       "tag": "tg-out"
  63.     }
  64.   ],
  65.   "dns": {
  66.     "server": [
  67.       "8.8.8.8",
  68.       "8.8.4.4",
  69.       "1.1.1.1",
  70.       "1.0.0.1",
  71.       "localhost"
  72.     ]
  73.   },
  74.   "routing": {
  75.     "domainStrategy": "IPOnDemand",   
  76.     "rules": [
  77.       {
  78.         "type": "field",
  79.         "ip": [
  80.           "0.0.0.0/8",
  81.           "10.0.0.0/8",
  82.           "100.64.0.0/10",
  83.           "127.0.0.0/8",
  84.           "169.254.0.0/16",
  85.           "172.16.0.0/12",
  86.           "192.0.0.0/24",
  87.           "192.0.2.0/24",
  88.           "192.168.0.0/16",
  89.           "198.18.0.0/15",
  90.           "198.51.100.0/24",
  91.           "203.0.113.0/24",
  92.           "::1/128",
  93.           "fc00::/7",
  94.           "fe80::/10"
  95.         ],
  96.         "outboundTag": "blocked"
  97.       },
  98.       {
  99.         "type": "field",
  100.         "inboundTag": ["tg-in"],
  101.         "outboundTag": "tg-out"
  102.       },
  103.       {
  104.         "type": "field",
  105.         "domain": [
  106.           "domain:epochtimes.com",
  107.           "domain:epochtimes.com.tw",
  108.           "domain:epochtimes.fr",
  109.           "domain:epochtimes.de",
  110.           "domain:epochtimes.jp",
  111.           "domain:epochtimes.ru",
  112.           "domain:epochtimes.co.il",
  113.           "domain:epochtimes.co.kr",
  114.           "domain:epochtimes-romania.com",
  115.           "domain:erabaru.net",
  116.           "domain:lagranepoca.com",
  117.           "domain:theepochtimes.com",
  118.           "domain:ntdtv.com",
  119.           "domain:ntd.tv",
  120.           "domain:ntdtv-dc.com",
  121.           "domain:ntdtv.com.tw",
  122.           "domain:minghui.org",
  123.           "domain:renminbao.com",
  124.           "domain:dafahao.com",
  125.           "domain:dongtaiwang.com",
  126.           "domain:falundafa.org",
  127.           "domain:wujieliulan.com",
  128.           "domain:ninecommentaries.com",
  129.           "domain:shenyun.com"
  130.         ],
  131.         "outboundTag": "blocked"
  132.       },
  133.       {
  134.         "type": "field",
  135.         "protocol": [
  136.            "bittorrent"
  137.         ],
  138.         "outboundTag": "blocked"
  139.       }
  140.       //include_ban_ad
  141.       //include_rules
  142.       //
  143.     ]
  144.   },
  145.   "transport": {
  146.     "kcpSettings": {
  147.       "uplinkCapacity": 100,
  148.       "downlinkCapacity": 100,
  149.       "congestion": true
  150.     },
  151.     "sockopt": {
  152.       "tcpFastOpen": true
  153.     }
  154.   }
  155. }
複製代碼
.

TOP

本帖最後由 角色 於 2019-1-15 11:52 編輯

13. QUIC_utp

v2ray qr 生成的二维码不正确
  1. ---------- V2Ray 配置信息 -------------

  2. 地址 (Address) = a.b.c.d

  3. 端口 (Port) = 47961

  4. 用户ID (User ID / UUID) = 8f834d92-6246-4fd2-860a-c3fc6ef35b47

  5. 额外ID (Alter Id) = 233

  6. 传输协议 (Network) = quic

  7. 伪装类型 (header type) = utp

  8. ---------- END -------------

  9. V2Ray 客户端使用教程: https://233now.com/post/4/

  10. 提示: 输入 v2ray url 可生成 vmess URL 链接 / 输入 v2ray qr 可生成二维码链接
複製代碼
.
  1. {
  2.   "log": {
  3.     "access": "/var/log/v2ray/access.log",
  4.     "error": "/var/log/v2ray/error.log",
  5.     "loglevel": "warning"
  6.   },
  7.   "inbounds": [
  8.     {
  9.       "port": 47961,
  10.       "protocol": "vmess",
  11.       "settings": {
  12.         "clients": [
  13.           {
  14.             "id": "8f834d92-6246-4fd2-860a-c3fc6ef35b47",
  15.             "level": 1,
  16.             "alterId": 233
  17.           }
  18.         ]
  19.       },
  20.       "streamSettings": {
  21.         "network": "quic",
  22.         "quicSettings": {
  23.           "security": "aes-128-gcm",
  24.           "key": "",
  25.           "header": {
  26.             "type": "utp"
  27.           }
  28.         }
  29.       },
  30.       "sniffing": {
  31.         "enabled": true,
  32.         "destOverride": [
  33.           "http",
  34.           "tls"
  35.         ]
  36.       }
  37.     }
  38.     //include_ss
  39.     //include_socks
  40.     //include_mtproto
  41.     //include_config
  42.     //
  43.   ],
  44.   "outbounds": [
  45.     {
  46.       "protocol": "freedom",
  47.       "settings": {}
  48.     },
  49.     {
  50.       "protocol": "blackhole",
  51.       "settings": {},
  52.       "tag": "blocked"
  53.         },
  54.         {
  55.       "protocol": "freedom",
  56.       "settings": {},
  57.       "tag": "direct"
  58.     },
  59.     {
  60.       "protocol": "mtproto",
  61.       "settings": {},
  62.       "tag": "tg-out"
  63.     }
  64.   ],
  65.   "dns": {
  66.     "server": [
  67.       "8.8.8.8",
  68.       "8.8.4.4",
  69.       "1.1.1.1",
  70.       "1.0.0.1",
  71.       "localhost"
  72.     ]
  73.   },
  74.   "routing": {
  75.     "domainStrategy": "IPOnDemand",   
  76.     "rules": [
  77.       {
  78.         "type": "field",
  79.         "ip": [
  80.           "0.0.0.0/8",
  81.           "10.0.0.0/8",
  82.           "100.64.0.0/10",
  83.           "127.0.0.0/8",
  84.           "169.254.0.0/16",
  85.           "172.16.0.0/12",
  86.           "192.0.0.0/24",
  87.           "192.0.2.0/24",
  88.           "192.168.0.0/16",
  89.           "198.18.0.0/15",
  90.           "198.51.100.0/24",
  91.           "203.0.113.0/24",
  92.           "::1/128",
  93.           "fc00::/7",
  94.           "fe80::/10"
  95.         ],
  96.         "outboundTag": "blocked"
  97.       },
  98.       {
  99.         "type": "field",
  100.         "inboundTag": ["tg-in"],
  101.         "outboundTag": "tg-out"
  102.       },
  103.       {
  104.         "type": "field",
  105.         "domain": [
  106.           "domain:epochtimes.com",
  107.           "domain:epochtimes.com.tw",
  108.           "domain:epochtimes.fr",
  109.           "domain:epochtimes.de",
  110.           "domain:epochtimes.jp",
  111.           "domain:epochtimes.ru",
  112.           "domain:epochtimes.co.il",
  113.           "domain:epochtimes.co.kr",
  114.           "domain:epochtimes-romania.com",
  115.           "domain:erabaru.net",
  116.           "domain:lagranepoca.com",
  117.           "domain:theepochtimes.com",
  118.           "domain:ntdtv.com",
  119.           "domain:ntd.tv",
  120.           "domain:ntdtv-dc.com",
  121.           "domain:ntdtv.com.tw",
  122.           "domain:minghui.org",
  123.           "domain:renminbao.com",
  124.           "domain:dafahao.com",
  125.           "domain:dongtaiwang.com",
  126.           "domain:falundafa.org",
  127.           "domain:wujieliulan.com",
  128.           "domain:ninecommentaries.com",
  129.           "domain:shenyun.com"
  130.         ],
  131.         "outboundTag": "blocked"
  132.       },
  133.       {
  134.         "type": "field",
  135.         "protocol": [
  136.            "bittorrent"
  137.         ],
  138.         "outboundTag": "blocked"
  139.       }
  140.       //include_ban_ad
  141.       //include_rules
  142.       //
  143.     ]
  144.   },
  145.   "transport": {
  146.     "kcpSettings": {
  147.             "uplinkCapacity": 100,
  148.             "downlinkCapacity": 100,
  149.             "congestion": true
  150.         },
  151.     "sockopt": {
  152.       "tcpFastOpen": true
  153.     }
  154.   }
  155. }
複製代碼
.

TOP

返回列表