Board logo

標題: 233yes.com里一键安装的config.json是长怎么样? [打印本頁]

作者: 角色    時間: 2019-1-14 00:25     標題: 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-14 00:27

本帖最後由 角色 於 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
作者: 角色    時間: 2019-1-14 00:29

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

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

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

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

V2Ray白话文教程:
https://toutyrater.github.io
作者: 角色    時間: 2019-1-14 01:01

本帖最後由 角色 於 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. }
複製代碼
.
作者: 角色    時間: 2019-1-14 01:21

本帖最後由 角色 於 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. }
複製代碼
.
作者: 角色    時間: 2019-1-14 17:56

本帖最後由 角色 於 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. }
複製代碼
.
作者: 角色    時間: 2019-1-14 18:35

本帖最後由 角色 於 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. }
複製代碼
.
作者: 角色    時間: 2019-1-14 20:38

本帖最後由 角色 於 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. }
複製代碼
.
作者: 角色    時間: 2019-1-14 20:38

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. }
複製代碼
.
作者: 角色    時間: 2019-1-14 20:59

本帖最後由 角色 於 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. }
複製代碼
.
作者: 角色    時間: 2019-1-14 21:24

本帖最後由 角色 於 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. }
複製代碼

作者: 角色    時間: 2019-1-15 01:06

本帖最後由 角色 於 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. }
複製代碼
.
作者: 角色    時間: 2019-1-15 01:48

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. }
複製代碼
.
作者: 角色    時間: 2019-1-15 11:14

本帖最後由 角色 於 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. }
複製代碼
.
作者: 角色    時間: 2019-1-15 11:50

本帖最後由 角色 於 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. }
複製代碼
.
作者: 角色    時間: 2019-1-15 12:16

14. QUIC_srtp

v2ray qr 产生的二维码不正确,要手动更改BifrostV client。

BifrostV client需要更改的地方:
1、用户等级:1
2、QUIC加密方式:aes-128-gcm
3、包头类型:srtp
  1. ---------- V2Ray 配置信息 -------------

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

  3. 端口 (Port) = 30088

  4. 用户ID (User ID / UUID) = 17fbee38-2f2c-4bb6-8fc1-1dce5b1ed377

  5. 额外ID (Alter Id) = 233

  6. 传输协议 (Network) = quic

  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": 30088,
  10.       "protocol": "vmess",
  11.       "settings": {
  12.         "clients": [
  13.           {
  14.             "id": "17fbee38-2f2c-4bb6-8fc1-1dce5b1ed377",
  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": "srtp"
  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. }
複製代碼

作者: 角色    時間: 2019-1-15 12:31

本帖最後由 角色 於 2019-1-15 12:35 編輯

15. QUIC_wechat-video

v2ray qr 产生的二维码不正确,要手动更改BifrostV client。

BifrostV client需要更改的地方:
1、用户等级:1
2、QUIC加密方式:aes-128-gcm
3、包头类型:wechat-video
  1. ---------- V2Ray 配置信息 -------------

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

  3. 端口 (Port) = 48674

  4. 用户ID (User ID / UUID) = 51fca01e-1161-484f-bd68-06adb70d6f1a

  5. 额外ID (Alter Id) = 233

  6. 传输协议 (Network) = quic

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

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

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

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

  11. [code].

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

作者: 角色    時間: 2019-1-15 13:01

16. QUIC_dtls

v2ray qr 产生的二维码不正确,要手动更改BifrostV client。

BifrostV client需要更改的地方:
1、用户等级:1
2、QUIC加密方式:aes-128-gcm
3、包头类型:dtls
  1. ---------- V2Ray 配置信息 -------------

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

  3. 端口 (Port) = 24910

  4. 用户ID (User ID / UUID) = 96853a3d-d9e4-46ba-959d-e6d81c16872a

  5. 额外ID (Alter Id) = 233

  6. 传输协议 (Network) = quic

  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": 24910,
  10.       "protocol": "vmess",
  11.       "settings": {
  12.         "clients": [
  13.           {
  14.             "id": "96853a3d-d9e4-46ba-959d-e6d81c16872a",
  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": "dtls"
  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. }
複製代碼

作者: 角色    時間: 2019-1-15 13:07

17. QUIC_wireguard

v2ray qr 产生的二维码不正确,要手动更改BifrostV client。

BifrostV client需要更改的地方:
1、用户等级:1
2、QUIC加密方式:aes-128-gcm
3、包头类型:wireguard
  1. ---------- V2Ray 配置信息 -------------

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

  3. 端口 (Port) = 53348

  4. 用户ID (User ID / UUID) = 755576db-fd91-4263-aaac-ef4abd5f5a7c

  5. 额外ID (Alter Id) = 233

  6. 传输协议 (Network) = quic

  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": 53348,
  10.       "protocol": "vmess",
  11.       "settings": {
  12.         "clients": [
  13.           {
  14.             "id": "755576db-fd91-4263-aaac-ef4abd5f5a7c",
  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": "wireguard"
  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. }
複製代碼
.
作者: 角色    時間: 2019-1-16 00:01

18. TCP_dynamicPort
  1. ---------- V2Ray 配置信息 -------------

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

  3. 端口 (Port) = 37133

  4. 用户ID (User ID / UUID) = 30063241-0bac-406a-a72c-41a259cca004

  5. 额外ID (Alter Id) = 233

  6. 传输协议 (Network) = tcp

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

  8. 备注: 动态端口已启用...

  9. ---------- END -------------

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

  11. 提示: 输入 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": 37133,
  10.       "protocol": "vmess",
  11.       "settings": {
  12.         "clients": [
  13.           {
  14.             "id": "30063241-0bac-406a-a72c-41a259cca004",
  15.             "level": 1,
  16.             "alterId": 233
  17.           }
  18.         ],
  19.         "detour": {
  20.           "to": "dynamic"
  21.         }
  22.       },
  23.       "streamSettings": {
  24.         "network": "tcp"
  25.       },
  26.       "sniffing": {
  27.         "enabled": true,
  28.         "destOverride": [
  29.           "http",
  30.           "tls"
  31.         ]
  32.       }
  33.     },
  34.     {
  35.       "protocol": "vmess",
  36.       "port": "10000-20000",
  37.       "tag": "dynamic",
  38.       "settings": {
  39.         "default": {
  40.            "level": 1,
  41.            "alterId": 32
  42.         }
  43.       },
  44.       "allocate": {
  45.         "strategy": "random",
  46.         "concurrency": 2,
  47.         "refresh": 5
  48.       }
  49.     }
  50.     //include_ss
  51.     //include_socks
  52.     //include_mtproto
  53.     //include_config
  54.     //
  55.   ],
  56.   "outbounds": [
  57.     {
  58.       "protocol": "freedom",
  59.       "settings": {}
  60.     },
  61.     {
  62.       "protocol": "blackhole",
  63.       "settings": {},
  64.       "tag": "blocked"
  65.     },
  66.     {
  67.       "protocol": "freedom",
  68.       "settings": {},
  69.       "tag": "direct"
  70.     },
  71.     {
  72.       "protocol": "mtproto",
  73.       "settings": {},
  74.       "tag": "tg-out"
  75.     }
  76.   ],
  77.   "dns": {
  78.     "server": [
  79.       "8.8.8.8",
  80.       "8.8.4.4",
  81.       "1.1.1.1",
  82.       "1.0.0.1",
  83.       "localhost"
  84.     ]
  85.   },
  86.   "routing": {
  87.     "domainStrategy": "IPOnDemand",
  88.     "rules": [
  89.       {
  90.         "type": "field",
  91.         "ip": [
  92.           "0.0.0.0/8",
  93.           "10.0.0.0/8",
  94.           "100.64.0.0/10",
  95.           "127.0.0.0/8",
  96.           "169.254.0.0/16",
  97.           "172.16.0.0/12",
  98.           "192.0.0.0/24",
  99.           "192.0.2.0/24",
  100.           "192.168.0.0/16",
  101.           "198.18.0.0/15",
  102.           "198.51.100.0/24",
  103.           "203.0.113.0/24",
  104.           "::1/128",
  105.           "fc00::/7",
  106.           "fe80::/10"
  107.         ],
  108.         "outboundTag": "blocked"
  109.       },
  110.       {
  111.         "type": "field",
  112.         "inboundTag": ["tg-in"],
  113.         "outboundTag": "tg-out"
  114.       },
  115.       {
  116.         "type": "field",
  117.         "domain": [
  118.           "domain:epochtimes.com",
  119.           "domain:epochtimes.com.tw",
  120.           "domain:epochtimes.fr",
  121.           "domain:epochtimes.de",
  122.           "domain:epochtimes.jp",
  123.           "domain:epochtimes.ru",
  124.           "domain:epochtimes.co.il",
  125.           "domain:epochtimes.co.kr",
  126.           "domain:epochtimes-romania.com",
  127.           "domain:erabaru.net",
  128.           "domain:lagranepoca.com",
  129.           "domain:theepochtimes.com",
  130.           "domain:ntdtv.com",
  131.           "domain:ntd.tv",
  132.           "domain:ntdtv-dc.com",
  133.           "domain:ntdtv.com.tw",
  134.           "domain:minghui.org",
  135.           "domain:renminbao.com",
  136.           "domain:dafahao.com",
  137.           "domain:dongtaiwang.com",
  138.           "domain:falundafa.org",
  139.           "domain:wujieliulan.com",
  140.           "domain:ninecommentaries.com",
  141.           "domain:shenyun.com"
  142.         ],
  143.         "outboundTag": "blocked"
  144.       },
  145.       {
  146.         "type": "field",
  147.         "protocol": [
  148.           "bittorrent"
  149.         ],
  150.         "outboundTag": "blocked"
  151.       }
  152.       //include_ban_ad
  153.       //include_rules
  154.       //
  155.     ]
  156.   },
  157.   "transport": {
  158.     "kcpSettings": {
  159.       "uplinkCapacity": 100,
  160.       "downlinkCapacity": 100,
  161.       "congestion": true
  162.     },
  163.     "sockopt": {
  164.       "tcpFastOpen": true
  165.     }
  166.   }
  167. }
複製代碼
.
作者: 角色    時間: 2019-1-16 00:41

19. TCP_HTTP_dynamicPort
  1. ---------- V2Ray 配置信息 -------------

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

  3. 端口 (Port) = 37085

  4. 用户ID (User ID / UUID) = e99af8dc-2e5c-4f17-af76-6f79ae71fc75

  5. 额外ID (Alter Id) = 233

  6. 传输协议 (Network) = tcp

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

  8. 备注: 动态端口已启用...

  9. ---------- END -------------

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

  11. 提示: 输入 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": 37085,
  10.       "protocol": "vmess",
  11.       "settings": {
  12.         "clients": [
  13.           {
  14.             "id": "e99af8dc-2e5c-4f17-af76-6f79ae71fc75",
  15.             "level": 1,
  16.             "alterId": 233
  17.           }
  18.         ],
  19.         "detour": {
  20.           "to": "dynamic"
  21.         }
  22.       },
  23.       "streamSettings": {
  24.         "network": "tcp",
  25.         "tcpSettings": {
  26.           "header": {
  27.             "type": "http"
  28.           }
  29.         }
  30.       },
  31.       "sniffing": {
  32.         "enabled": true,
  33.         "destOverride": [
  34.           "http",
  35.           "tls"
  36.         ]
  37.       }
  38.     },
  39.     {
  40.       "protocol": "vmess",
  41.       "port": "10000-20000",
  42.       "tag": "dynamic",
  43.       "settings": {
  44.         "default": {
  45.           "level": 1,
  46.           "alterId": 32
  47.         }
  48.       },
  49.       "allocate": {
  50.         "strategy": "random",
  51.         "concurrency": 2,
  52.         "refresh": 5
  53.       },
  54.       "streamSettings": {
  55.         "network": "tcp",
  56.         "tcpSettings": {
  57.           "header": {
  58.             "type": "http",
  59.             "response": {
  60.               "version": "1.1",
  61.               "status": "200",
  62.               "reason": "OK",
  63.               "headers": {
  64.                 "Content-encoding": [
  65.                   "gzip"
  66.                 ],
  67.                 "Content-Type": [
  68.                   "text/html; charset=utf-8"
  69.                 ],
  70.                 "Cache-Control": [
  71.                   "no-cache"
  72.                 ],
  73.                 "Vary": [
  74.                   "Accept-Encoding"
  75.                 ],
  76.                 "X-Frame-Options": [
  77.                   "deny"
  78.                 ],
  79.                 "X-XSS-Protection": [
  80.                   "1; mode=block"
  81.                 ],
  82.                 "X-content-type-options": [
  83.                   "nosniff"
  84.                 ]
  85.               }
  86.             }
  87.           }
  88.         }
  89.       }
  90.     }
  91.     //include_ss
  92.     //include_socks
  93.     //include_mtproto
  94.     //include_config
  95.     //
  96.   ],
  97.   "outbounds": [
  98.     {
  99.       "protocol": "freedom",
  100.       "settings": {}
  101.     },
  102.     {
  103.       "protocol": "blackhole",
  104.       "settings": {},
  105.       "tag": "blocked"
  106.     },
  107.     {
  108.       "protocol": "freedom",
  109.       "settings": {},
  110.       "tag": "direct"
  111.     },
  112.     {
  113.       "protocol": "mtproto",
  114.       "settings": {},
  115.       "tag": "tg-out"
  116.     }
  117.   ],
  118.   "dns": {
  119.     "server": [
  120.       "8.8.8.8",
  121.       "8.8.4.4",
  122.       "1.1.1.1",
  123.       "1.0.0.1",
  124.       "localhost"
  125.     ]
  126.   },
  127.   "routing": {
  128.     "domainStrategy": "IPOnDemand",
  129.     "rules": [
  130.       {
  131.         "type": "field",
  132.         "ip": [
  133.           "0.0.0.0/8",
  134.           "10.0.0.0/8",
  135.           "100.64.0.0/10",
  136.           "127.0.0.0/8",
  137.           "169.254.0.0/16",
  138.           "172.16.0.0/12",
  139.           "192.0.0.0/24",
  140.           "192.0.2.0/24",
  141.           "192.168.0.0/16",
  142.           "198.18.0.0/15",
  143.           "198.51.100.0/24",
  144.           "203.0.113.0/24",
  145.           "::1/128",
  146.           "fc00::/7",
  147.           "fe80::/10"
  148.         ],
  149.         "outboundTag": "blocked"
  150.       },
  151.       {
  152.         "type": "field",
  153.         "inboundTag": ["tg-in"],
  154.         "outboundTag": "tg-out"
  155.       },
  156.       {
  157.         "type": "field",
  158.         "domain": [
  159.           "domain:epochtimes.com",
  160.           "domain:epochtimes.com.tw",
  161.           "domain:epochtimes.fr",
  162.           "domain:epochtimes.de",
  163.           "domain:epochtimes.jp",
  164.           "domain:epochtimes.ru",
  165.           "domain:epochtimes.co.il",
  166.           "domain:epochtimes.co.kr",
  167.           "domain:epochtimes-romania.com",
  168.           "domain:erabaru.net",
  169.           "domain:lagranepoca.com",
  170.           "domain:theepochtimes.com",
  171.           "domain:ntdtv.com",
  172.           "domain:ntd.tv",
  173.           "domain:ntdtv-dc.com",
  174.           "domain:ntdtv.com.tw",
  175.           "domain:minghui.org",
  176.           "domain:renminbao.com",
  177.           "domain:dafahao.com",
  178.           "domain:dongtaiwang.com",
  179.           "domain:falundafa.org",
  180.           "domain:wujieliulan.com",
  181.           "domain:ninecommentaries.com",
  182.           "domain:shenyun.com"
  183.         ],
  184.         "outboundTag": "blocked"
  185.       },
  186.       {
  187.         "type": "field",
  188.         "protocol": [
  189.           "bittorrent"
  190.         ],
  191.         "outboundTag": "blocked"
  192.       }
  193.       //include_ban_ad
  194.       //include_rules
  195.       //
  196.     ]
  197.   },
  198.   "transport": {
  199.     "kcpSettings": {
  200.       "uplinkCapacity": 100,
  201.       "downlinkCapacity": 100,
  202.       "congestion": true
  203.     },
  204.     "sockopt": {
  205.       "tcpFastOpen": true
  206.     }
  207.   }
  208. }
複製代碼
.
作者: 角色    時間: 2019-1-16 12:28

本帖最後由 角色 於 2019-1-16 12:42 編輯

20. WebSocket_dynamicPort
  1. ---------- V2Ray 配置信息 -------------

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

  3. 端口 (Port) = 35969

  4. 用户ID (User ID / UUID) = c6e9c6c1-1518-4ad3-a098-1f24b5cd6f65

  5. 额外ID (Alter Id) = 233

  6. 传输协议 (Network) = ws

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

  8. 备注: 动态端口已启用...

  9. ---------- END -------------

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

  11. 提示: 输入 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": 35969,
  10.       "protocol": "vmess",
  11.       "settings": {
  12.         "clients": [
  13.           {
  14.             "id": "c6e9c6c1-1518-4ad3-a098-1f24b5cd6f65",
  15.             "level": 1,
  16.             "alterId": 233
  17.           }
  18.         ],
  19.         "detour": {
  20.           "to": "dynamic"
  21.         }
  22.       },
  23.       "streamSettings": {
  24.         "network": "ws"
  25.       },
  26.       "sniffing": {
  27.         "enabled": true,
  28.         "destOverride": [
  29.           "http",
  30.           "tls"
  31.         ]
  32.       }
  33.     },
  34.     {
  35.       "protocol": "vmess",
  36.       "port": "10000-20000",
  37.       "tag": "dynamic",
  38.       "settings": {
  39.         "default": {
  40.           "level": 1,
  41.           "alterId": 32
  42.         }
  43.       },
  44.       "allocate": {
  45.         "strategy": "random",
  46.         "concurrency": 2,
  47.         "refresh": 5
  48.       },
  49.       "streamSettings": {
  50.         "network": "ws"
  51.       }
  52.     }
  53.     //include_ss
  54.     //include_socks
  55.     //include_mtproto
  56.     //include_config
  57.     //
  58.   ],
  59.   "outbounds": [
  60.     {
  61.       "protocol": "freedom",
  62.       "settings": {}
  63.     },
  64.     {
  65.       "protocol": "blackhole",
  66.       "settings": {},
  67.       "tag": "blocked"
  68.     },
  69.     {
  70.       "protocol": "freedom",
  71.       "settings": {},
  72.       "tag": "direct"
  73.     },
  74.     {
  75.       "protocol": "mtproto",
  76.       "settings": {},
  77.       "tag": "tg-out"
  78.     }
  79.   ],
  80.   "dns": {
  81.     "server": [
  82.       "8.8.8.8",
  83.       "8.8.4.4",
  84.       "1.1.1.1",
  85.       "1.0.0.1",
  86.       "localhost"
  87.     ]
  88.   },
  89.   "routing": {
  90.     "domainStrategy": "IPOnDemand",
  91.     "rules": [
  92.       {
  93.         "type": "field",
  94.         "ip": [
  95.           "0.0.0.0/8",
  96.           "10.0.0.0/8",
  97.           "100.64.0.0/10",
  98.           "127.0.0.0/8",
  99.           "169.254.0.0/16",
  100.           "172.16.0.0/12",
  101.           "192.0.0.0/24",
  102.           "192.0.2.0/24",
  103.           "192.168.0.0/16",
  104.           "198.18.0.0/15",
  105.           "198.51.100.0/24",
  106.           "203.0.113.0/24",
  107.           "::1/128",
  108.           "fc00::/7",
  109.           "fe80::/10"
  110.         ],
  111.         "outboundTag": "blocked"
  112.       },
  113.       {
  114.         "type": "field",
  115.         "inboundTag": ["tg-in"],
  116.         "outboundTag": "tg-out"
  117.       },
  118.       {
  119.         "type": "field",
  120.         "domain": [
  121.           "domain:epochtimes.com",
  122.           "domain:epochtimes.com.tw",
  123.           "domain:epochtimes.fr",
  124.           "domain:epochtimes.de",
  125.           "domain:epochtimes.jp",
  126.           "domain:epochtimes.ru",
  127.           "domain:epochtimes.co.il",
  128.           "domain:epochtimes.co.kr",
  129.           "domain:epochtimes-romania.com",
  130.           "domain:erabaru.net",
  131.           "domain:lagranepoca.com",
  132.           "domain:theepochtimes.com",
  133.           "domain:ntdtv.com",
  134.           "domain:ntd.tv",
  135.           "domain:ntdtv-dc.com",
  136.           "domain:ntdtv.com.tw",
  137.           "domain:minghui.org",
  138.           "domain:renminbao.com",
  139.           "domain:dafahao.com",
  140.           "domain:dongtaiwang.com",
  141.           "domain:falundafa.org",
  142.           "domain:wujieliulan.com",
  143.           "domain:ninecommentaries.com",
  144.           "domain:shenyun.com"
  145.         ],
  146.         "outboundTag": "blocked"
  147.       },
  148.       {
  149.         "type": "field",
  150.         "protocol": [
  151.           "bittorrent"
  152.         ],
  153.         "outboundTag": "blocked"
  154.       }
  155.       //include_ban_ad
  156.       //include_rules
  157.       //
  158.     ]
  159.   },
  160.   "transport": {
  161.     "kcpSettings": {
  162.       "uplinkCapacity": 100,
  163.       "downlinkCapacity": 100,
  164.       "congestion": true
  165.     },
  166.     "sockopt": {
  167.       "tcpFastOpen": true
  168.     }
  169.   }
  170. }
複製代碼

作者: 角色    時間: 2019-1-16 12:52

21. mKCP_dynamicPort
  1. ---------- V2Ray 配置信息 -------------

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

  3. 端口 (Port) = 51974

  4. 用户ID (User ID / UUID) = 09b18fd4-2e05-478f-aa4b-ee053b6038a0

  5. 额外ID (Alter Id) = 233

  6. 传输协议 (Network) = kcp

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

  8. 备注: 动态端口已启用...

  9. ---------- END -------------

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

  11. 提示: 输入 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": 51974,
  10.       "protocol": "vmess",
  11.       "settings": {
  12.         "clients": [
  13.           {
  14.             "id": "09b18fd4-2e05-478f-aa4b-ee053b6038a0",
  15.             "level": 1,
  16.             "alterId": 233
  17.           }
  18.         ],
  19.         "detour": {
  20.           "to": "dynamic"
  21.         }
  22.       },
  23.       "streamSettings": {
  24.         "network": "kcp",
  25.         "kcpSettings": {
  26.           "header": {
  27.             "type": "none"
  28.           }
  29.         }
  30.       },
  31.       "sniffing": {
  32.         "enabled": true,
  33.         "destOverride": [
  34.           "http",
  35.           "tls"
  36.         ]
  37.       }
  38.     },
  39.     {
  40.       "protocol": "vmess",
  41.       "port": "10000-20000",
  42.       "tag": "dynamic",
  43.       "settings": {
  44.         "default": {
  45.           "level": 1,
  46.           "alterId": 32
  47.         }
  48.       },
  49.       "allocate": {
  50.         "strategy": "random",
  51.         "concurrency": 2,
  52.         "refresh": 5
  53.       },
  54.       "streamSettings": {
  55.         "network": "kcp",
  56.         "kcpSettings": {
  57.           "header": {
  58.             "type": "none"
  59.           }
  60.         }
  61.       }
  62.     }
  63.     //include_ss
  64.     //include_socks
  65.     //include_mtproto
  66.     //include_config
  67.     //
  68.   ],
  69.   "outbounds": [
  70.     {
  71.       "protocol": "freedom",
  72.       "settings": {}
  73.     },
  74.     {
  75.       "protocol": "blackhole",
  76.       "settings": {},
  77.       "tag": "blocked"
  78.     },
  79.     {
  80.       "protocol": "freedom",
  81.       "settings": {},
  82.       "tag": "direct"
  83.     },
  84.     {
  85.       "protocol": "mtproto",
  86.       "settings": {},
  87.       "tag": "tg-out"
  88.     }
  89.   ],
  90.   "dns": {
  91.     "server": [
  92.       "8.8.8.8",
  93.       "8.8.4.4",
  94.       "1.1.1.1",
  95.       "1.0.0.1",
  96.       "localhost"
  97.     ]
  98.   },
  99.   "routing": {
  100.     "domainStrategy": "IPOnDemand",
  101.     "rules": [
  102.       {
  103.         "type": "field",
  104.         "ip": [
  105.           "0.0.0.0/8",
  106.           "10.0.0.0/8",
  107.           "100.64.0.0/10",
  108.           "127.0.0.0/8",
  109.           "169.254.0.0/16",
  110.           "172.16.0.0/12",
  111.           "192.0.0.0/24",
  112.           "192.0.2.0/24",
  113.           "192.168.0.0/16",
  114.           "198.18.0.0/15",
  115.           "198.51.100.0/24",
  116.           "203.0.113.0/24",
  117.           "::1/128",
  118.           "fc00::/7",
  119.           "fe80::/10"
  120.         ],
  121.         "outboundTag": "blocked"
  122.       },
  123.       {
  124.         "type": "field",
  125.         "inboundTag": ["tg-in"],
  126.         "outboundTag": "tg-out"
  127.       },
  128.       {
  129.         "type": "field",
  130.         "domain": [
  131.           "domain:epochtimes.com",
  132.           "domain:epochtimes.com.tw",
  133.           "domain:epochtimes.fr",
  134.           "domain:epochtimes.de",
  135.           "domain:epochtimes.jp",
  136.           "domain:epochtimes.ru",
  137.           "domain:epochtimes.co.il",
  138.           "domain:epochtimes.co.kr",
  139.           "domain:epochtimes-romania.com",
  140.           "domain:erabaru.net",
  141.           "domain:lagranepoca.com",
  142.           "domain:theepochtimes.com",
  143.           "domain:ntdtv.com",
  144.           "domain:ntd.tv",
  145.           "domain:ntdtv-dc.com",
  146.           "domain:ntdtv.com.tw",
  147.           "domain:minghui.org",
  148.           "domain:renminbao.com",
  149.           "domain:dafahao.com",
  150.           "domain:dongtaiwang.com",
  151.           "domain:falundafa.org",
  152.           "domain:wujieliulan.com",
  153.           "domain:ninecommentaries.com",
  154.           "domain:shenyun.com"
  155.         ],
  156.         "outboundTag": "blocked"
  157.       },
  158.       {
  159.         "type": "field",
  160.         "protocol": [
  161.           "bittorrent"
  162.         ],
  163.         "outboundTag": "blocked"
  164.       }
  165.       //include_ban_ad
  166.       //include_rules
  167.       //
  168.     ]
  169.   },
  170.   "transport": {
  171.     "kcpSettings": {
  172.       "uplinkCapacity": 100,
  173.       "downlinkCapacity": 100,
  174.       "congestion": true
  175.     },
  176.     "sockopt": {
  177.       "tcpFastOpen": true
  178.     }
  179.   }
  180. }
複製代碼

作者: 角色    時間: 2019-1-16 14:48

22. mKCP_utp_dynamicPort
  1. ---------- V2Ray 配置信息 -------------

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

  3. 端口 (Port) = 50704

  4. 用户ID (User ID / UUID) = 2d887895-cea6-476b-9a51-f50c74ca92e5

  5. 额外ID (Alter Id) = 233

  6. 传输协议 (Network) = kcp

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

  8. 备注: 动态端口已启用...

  9. ---------- END -------------

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

  11. 提示: 输入 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": 50704,
  10.       "protocol": "vmess",
  11.       "settings": {
  12.         "clients": [
  13.           {
  14.             "id": "2d887895-cea6-476b-9a51-f50c74ca92e5",
  15.             "level": 1,
  16.             "alterId": 233
  17.           }
  18.         ],
  19.         "detour": {
  20.           "to": "dynamic"
  21.         }
  22.       },
  23.       "streamSettings": {
  24.                 "network": "kcp",
  25.                 "kcpSettings": {
  26.                     "header": {
  27.                         "type": "utp"
  28.                     }
  29.                 }
  30.       },
  31.       "sniffing": {
  32.         "enabled": true,
  33.         "destOverride": [
  34.           "http",
  35.           "tls"
  36.         ]
  37.       }
  38.     },
  39.     {
  40.       "protocol": "vmess",
  41.       "port": "10000-20000",
  42.       "tag": "dynamic",
  43.       "settings": {
  44.         "default": {
  45.           "level": 1,
  46.           "alterId": 32
  47.         }
  48.       },
  49.       "allocate": {
  50.         "strategy": "random",
  51.         "concurrency": 2,
  52.         "refresh": 5
  53.       },
  54.       "streamSettings": {
  55.         "network": "kcp",
  56.         "kcpSettings": {
  57.           "header": {
  58.             "type": "utp"
  59.           }
  60.         }
  61.       }
  62.     }
  63.     //include_ss
  64.     //include_socks
  65.     //include_mtproto
  66.     //include_config
  67.     //
  68.   ],
  69.   "outbounds": [
  70.     {
  71.       "protocol": "freedom",
  72.       "settings": {}
  73.     },
  74.     {
  75.       "protocol": "blackhole",
  76.       "settings": {},
  77.       "tag": "blocked"
  78.     },
  79.     {
  80.       "protocol": "freedom",
  81.       "settings": {},
  82.       "tag": "direct"
  83.     },
  84.     {
  85.       "protocol": "mtproto",
  86.       "settings": {},
  87.       "tag": "tg-out"
  88.     }
  89.   ],
  90.   "dns": {
  91.     "server": [
  92.       "8.8.8.8",
  93.       "8.8.4.4",
  94.       "1.1.1.1",
  95.       "1.0.0.1",
  96.       "localhost"
  97.     ]
  98.   },
  99.   "routing": {
  100.     "domainStrategy": "IPOnDemand",
  101.     "rules": [
  102.       {
  103.         "type": "field",
  104.         "ip": [
  105.           "0.0.0.0/8",
  106.           "10.0.0.0/8",
  107.           "100.64.0.0/10",
  108.           "127.0.0.0/8",
  109.           "169.254.0.0/16",
  110.           "172.16.0.0/12",
  111.           "192.0.0.0/24",
  112.           "192.0.2.0/24",
  113.           "192.168.0.0/16",
  114.           "198.18.0.0/15",
  115.           "198.51.100.0/24",
  116.           "203.0.113.0/24",
  117.           "::1/128",
  118.           "fc00::/7",
  119.           "fe80::/10"
  120.         ],
  121.         "outboundTag": "blocked"
  122.       },
  123.       {
  124.         "type": "field",
  125.         "inboundTag": ["tg-in"],
  126.         "outboundTag": "tg-out"
  127.       },
  128.       {
  129.         "type": "field",
  130.         "domain": [
  131.           "domain:epochtimes.com",
  132.           "domain:epochtimes.com.tw",
  133.           "domain:epochtimes.fr",
  134.           "domain:epochtimes.de",
  135.           "domain:epochtimes.jp",
  136.           "domain:epochtimes.ru",
  137.           "domain:epochtimes.co.il",
  138.           "domain:epochtimes.co.kr",
  139.           "domain:epochtimes-romania.com",
  140.           "domain:erabaru.net",
  141.           "domain:lagranepoca.com",
  142.           "domain:theepochtimes.com",
  143.           "domain:ntdtv.com",
  144.           "domain:ntd.tv",
  145.           "domain:ntdtv-dc.com",
  146.           "domain:ntdtv.com.tw",
  147.           "domain:minghui.org",
  148.           "domain:renminbao.com",
  149.           "domain:dafahao.com",
  150.           "domain:dongtaiwang.com",
  151.           "domain:falundafa.org",
  152.           "domain:wujieliulan.com",
  153.           "domain:ninecommentaries.com",
  154.           "domain:shenyun.com"
  155.         ],
  156.         "outboundTag": "blocked"
  157.       },
  158.       {
  159.         "type": "field",
  160.         "protocol": [
  161.           "bittorrent"
  162.         ],
  163.         "outboundTag": "blocked"
  164.       }
  165.       //include_ban_ad
  166.       //include_rules
  167.       //
  168.     ]
  169.   },
  170.   "transport": {
  171.     "kcpSettings": {
  172.       "uplinkCapacity": 100,
  173.       "downlinkCapacity": 100,
  174.       "congestion": true
  175.     },
  176.     "sockopt": {
  177.       "tcpFastOpen": true
  178.     }
  179.   }
  180. }
複製代碼
.
作者: 角色    時間: 2019-1-16 15:18

23. mKCP_srtp_dynamicPort
  1. ---------- V2Ray 配置信息 -------------

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

  3. 端口 (Port) = 31202

  4. 用户ID (User ID / UUID) = 3c7008a4-d9bf-4e3a-ad77-29a86442468a

  5. 额外ID (Alter Id) = 233

  6. 传输协议 (Network) = kcp

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

  8. 备注: 动态端口已启用...

  9. ---------- END -------------

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

  11. 提示: 输入 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": 31202,
  10.       "protocol": "vmess",
  11.       "settings": {
  12.         "clients": [
  13.           {
  14.             "id": "3c7008a4-d9bf-4e3a-ad77-29a86442468a",
  15.             "level": 1,
  16.             "alterId": 233
  17.           }
  18.         ],
  19.         "detour": {
  20.           "to": "dynamic"
  21.         }
  22.       },
  23.       "streamSettings": {
  24.         "network": "kcp",
  25.         "kcpSettings": {
  26.         "header": {
  27.           "type": "srtp"
  28.         }
  29.       }
  30.     },
  31.     "sniffing": {
  32.       "enabled": true,
  33.       "destOverride": [
  34.         "http",
  35.         "tls"
  36.       ]
  37.     }
  38.   },
  39.   {
  40.     "protocol": "vmess",
  41.      "port": "10000-20000",
  42.      "tag": "dynamic",
  43.      "settings": {
  44.        "default": {
  45.          "level": 1,
  46.          "alterId": 32
  47.        }
  48.      },
  49.      "allocate": {
  50.        "strategy": "random",
  51.        "concurrency": 2,
  52.        "refresh": 5
  53.      },
  54.      "streamSettings": {
  55.         "network": "kcp",
  56.         "kcpSettings": {
  57.           "header": {
  58.             "type": "srtp"
  59.           }
  60.         }
  61.       }
  62.     }
  63.     //include_ss
  64.     //include_socks
  65.     //include_mtproto
  66.     //include_config
  67.     //
  68.   ],
  69.   "outbounds": [
  70.     {
  71.       "protocol": "freedom",
  72.       "settings": {}
  73.     },
  74.     {
  75.       "protocol": "blackhole",
  76.       "settings": {},
  77.       "tag": "blocked"
  78.     },
  79.     {
  80.       "protocol": "freedom",
  81.       "settings": {},
  82.       "tag": "direct"
  83.     },
  84.     {
  85.       "protocol": "mtproto",
  86.       "settings": {},
  87.       "tag": "tg-out"
  88.     }
  89.   ],
  90.   "dns": {
  91.     "server": [
  92.       "8.8.8.8",
  93.       "8.8.4.4",
  94.       "1.1.1.1",
  95.       "1.0.0.1",
  96.       "localhost"
  97.     ]
  98.   },
  99.   "routing": {
  100.     "domainStrategy": "IPOnDemand",
  101.     "rules": [
  102.       {
  103.         "type": "field",
  104.         "ip": [
  105.           "0.0.0.0/8",
  106.           "10.0.0.0/8",
  107.           "100.64.0.0/10",
  108.           "127.0.0.0/8",
  109.           "169.254.0.0/16",
  110.           "172.16.0.0/12",
  111.           "192.0.0.0/24",
  112.           "192.0.2.0/24",
  113.           "192.168.0.0/16",
  114.           "198.18.0.0/15",
  115.           "198.51.100.0/24",
  116.           "203.0.113.0/24",
  117.           "::1/128",
  118.           "fc00::/7",
  119.           "fe80::/10"
  120.         ],
  121.         "outboundTag": "blocked"
  122.       },
  123.       {
  124.         "type": "field",
  125.         "inboundTag": ["tg-in"],
  126.         "outboundTag": "tg-out"
  127.       },
  128.       {
  129.         "type": "field",
  130.         "domain": [
  131.           "domain:epochtimes.com",
  132.           "domain:epochtimes.com.tw",
  133.           "domain:epochtimes.fr",
  134.           "domain:epochtimes.de",
  135.           "domain:epochtimes.jp",
  136.           "domain:epochtimes.ru",
  137.           "domain:epochtimes.co.il",
  138.           "domain:epochtimes.co.kr",
  139.           "domain:epochtimes-romania.com",
  140.           "domain:erabaru.net",
  141.           "domain:lagranepoca.com",
  142.           "domain:theepochtimes.com",
  143.           "domain:ntdtv.com",
  144.           "domain:ntd.tv",
  145.           "domain:ntdtv-dc.com",
  146.           "domain:ntdtv.com.tw",
  147.           "domain:minghui.org",
  148.           "domain:renminbao.com",
  149.           "domain:dafahao.com",
  150.           "domain:dongtaiwang.com",
  151.           "domain:falundafa.org",
  152.           "domain:wujieliulan.com",
  153.           "domain:ninecommentaries.com",
  154.           "domain:shenyun.com"
  155.         ],
  156.         "outboundTag": "blocked"
  157.       },
  158.       {
  159.         "type": "field",
  160.         "protocol": [
  161.           "bittorrent"
  162.         ],
  163.         "outboundTag": "blocked"
  164.       }
  165.       //include_ban_ad
  166.       //include_rules
  167.       //
  168.     ]
  169.   },
  170.   "transport": {
  171.     "kcpSettings": {
  172.       "uplinkCapacity": 100,
  173.       "downlinkCapacity": 100,
  174.       "congestion": true
  175.     },
  176.     "sockopt": {
  177.       "tcpFastOpen": true
  178.     }
  179.   }
  180. }
複製代碼
.
作者: 角色    時間: 2019-1-16 15:33

24. mKCP_wechat-video_dynamicPort
  1. ---------- V2Ray 配置信息 -------------

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

  3. 端口 (Port) = 61079

  4. 用户ID (User ID / UUID) = b53f4c43-3fdb-475c-bc95-e888aa689248

  5. 额外ID (Alter Id) = 233

  6. 传输协议 (Network) = kcp

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

  8. 备注: 动态端口已启用...

  9. ---------- END -------------

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

  11. 提示: 输入 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": 61079,
  10.       "protocol": "vmess",
  11.       "settings": {
  12.         "clients": [
  13.           {
  14.             "id": "b53f4c43-3fdb-475c-bc95-e888aa689248",
  15.             "level": 1,
  16.             "alterId": 233
  17.           }
  18.         ],
  19.         "detour": {
  20.           "to": "dynamic"
  21.         }
  22.       },
  23.       "streamSettings": {
  24.         "network": "kcp",
  25.         "kcpSettings": {
  26.           "header": {
  27.             "type": "wechat-video"
  28.           }
  29.         }
  30.       },
  31.       "sniffing": {
  32.         "enabled": true,
  33.         "destOverride": [
  34.           "http",
  35.           "tls"
  36.         ]
  37.       }
  38.     },
  39.     {
  40.       "protocol": "vmess",
  41.       "port": "10000-20000",
  42.       "tag": "dynamic",
  43.       "settings": {
  44.         "default": {
  45.           "level": 1,
  46.           "alterId": 32
  47.         }
  48.       },
  49.       "allocate": {
  50.         "strategy": "random",
  51.         "concurrency": 2,
  52.         "refresh": 5
  53.       },
  54.       "streamSettings": {
  55.         "network": "kcp",
  56.         "kcpSettings": {
  57.           "header": {
  58.             "type": "wechat-video"
  59.           }
  60.         }
  61.       }
  62.     }
  63.     //include_ss
  64.     //include_socks
  65.     //include_mtproto
  66.     //include_config
  67.     //
  68.   ],
  69.   "outbounds": [
  70.     {
  71.       "protocol": "freedom",
  72.       "settings": {}
  73.     },
  74.     {
  75.       "protocol": "blackhole",
  76.       "settings": {},
  77.       "tag": "blocked"
  78.     },
  79.     {
  80.       "protocol": "freedom",
  81.       "settings": {},
  82.       "tag": "direct"
  83.     },
  84.     {
  85.       "protocol": "mtproto",
  86.       "settings": {},
  87.       "tag": "tg-out"
  88.     }
  89.   ],
  90.   "dns": {
  91.     "server": [
  92.       "8.8.8.8",
  93.       "8.8.4.4",
  94.       "1.1.1.1",
  95.       "1.0.0.1",
  96.       "localhost"
  97.     ]
  98.   },
  99.   "routing": {
  100.     "domainStrategy": "IPOnDemand",
  101.     "rules": [
  102.       {
  103.         "type": "field",
  104.         "ip": [
  105.           "0.0.0.0/8",
  106.           "10.0.0.0/8",
  107.           "100.64.0.0/10",
  108.           "127.0.0.0/8",
  109.           "169.254.0.0/16",
  110.           "172.16.0.0/12",
  111.           "192.0.0.0/24",
  112.           "192.0.2.0/24",
  113.           "192.168.0.0/16",
  114.           "198.18.0.0/15",
  115.           "198.51.100.0/24",
  116.           "203.0.113.0/24",
  117.           "::1/128",
  118.           "fc00::/7",
  119.           "fe80::/10"
  120.         ],
  121.         "outboundTag": "blocked"
  122.       },
  123.       {
  124.         "type": "field",
  125.         "inboundTag": ["tg-in"],
  126.         "outboundTag": "tg-out"
  127.       },
  128.       {
  129.         "type": "field",
  130.         "domain": [
  131.           "domain:epochtimes.com",
  132.           "domain:epochtimes.com.tw",
  133.           "domain:epochtimes.fr",
  134.           "domain:epochtimes.de",
  135.           "domain:epochtimes.jp",
  136.           "domain:epochtimes.ru",
  137.           "domain:epochtimes.co.il",
  138.           "domain:epochtimes.co.kr",
  139.           "domain:epochtimes-romania.com",
  140.           "domain:erabaru.net",
  141.           "domain:lagranepoca.com",
  142.           "domain:theepochtimes.com",
  143.           "domain:ntdtv.com",
  144.           "domain:ntd.tv",
  145.           "domain:ntdtv-dc.com",
  146.           "domain:ntdtv.com.tw",
  147.           "domain:minghui.org",
  148.           "domain:renminbao.com",
  149.           "domain:dafahao.com",
  150.           "domain:dongtaiwang.com",
  151.           "domain:falundafa.org",
  152.           "domain:wujieliulan.com",
  153.           "domain:ninecommentaries.com",
  154.           "domain:shenyun.com"
  155.         ],
  156.         "outboundTag": "blocked"
  157.       },
  158.       {
  159.         "type": "field",
  160.         "protocol": [
  161.           "bittorrent"
  162.         ],
  163.         "outboundTag": "blocked"
  164.       }
  165.       //include_ban_ad
  166.       //include_rules
  167.       //
  168.     ]
  169.   },
  170.   "transport": {
  171.     "kcpSettings": {
  172.       "uplinkCapacity": 100,
  173.       "downlinkCapacity": 100,
  174.       "congestion": true
  175.     },
  176.     "sockopt": {
  177.       "tcpFastOpen": true
  178.     }
  179.   }
  180. }
複製代碼
.
作者: 角色    時間: 2019-1-16 15:56

25. mKCP_dtls_dynamicPort
  1. ---------- V2Ray 配置信息 -------------

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

  3. 端口 (Port) = 46528

  4. 用户ID (User ID / UUID) = 37a3cc7e-97bd-4eac-a87f-9e62c445b05c

  5. 额外ID (Alter Id) = 233

  6. 传输协议 (Network) = kcp

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

  8. 备注: 动态端口已启用...

  9. ---------- END -------------

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

  11. 提示: 输入 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": 46528,
  10.       "protocol": "vmess",
  11.       "settings": {
  12.         "clients": [
  13.           {
  14.             "id": "37a3cc7e-97bd-4eac-a87f-9e62c445b05c",
  15.             "level": 1,
  16.             "alterId": 233
  17.           }
  18.         ],
  19.         "detour": {
  20.           "to": "dynamic"
  21.         }
  22.       },
  23.       "streamSettings": {
  24.         "network": "kcp",
  25.         "kcpSettings": {
  26.           "header": {
  27.             "type": "dtls"
  28.           }
  29.         }
  30.       },
  31.       "sniffing": {
  32.         "enabled": true,
  33.         "destOverride": [
  34.           "http",
  35.           "tls"
  36.         ]
  37.       }
  38.     },
  39.     {
  40.       "protocol": "vmess",
  41.       "port": "10000-20000",
  42.       "tag": "dynamic",
  43.         "settings": {
  44.           "default": {
  45.             "level": 1,
  46.             "alterId": 32
  47.           }
  48.         },
  49.         "allocate": {
  50.           "strategy": "random",
  51.           "concurrency": 2,
  52.           "refresh": 5
  53.         },
  54.         "streamSettings": {
  55.           "network": "kcp",
  56.           "kcpSettings": {
  57.             "header": {
  58.               "type": "dtls"
  59.           }
  60.         }
  61.       }
  62.     }
  63.     //include_ss
  64.     //include_socks
  65.     //include_mtproto
  66.     //include_config
  67.     //
  68.   ],
  69.   "outbounds": [
  70.     {
  71.       "protocol": "freedom",
  72.       "settings": {}
  73.     },
  74.     {
  75.       "protocol": "blackhole",
  76.       "settings": {},
  77.       "tag": "blocked"
  78.     },
  79.     {
  80.       "protocol": "freedom",
  81.       "settings": {},
  82.       "tag": "direct"
  83.     },
  84.     {
  85.       "protocol": "mtproto",
  86.       "settings": {},
  87.       "tag": "tg-out"
  88.     }
  89.   ],
  90.   "dns": {
  91.     "server": [
  92.       "8.8.8.8",
  93.       "8.8.4.4",
  94.       "1.1.1.1",
  95.       "1.0.0.1",
  96.       "localhost"
  97.     ]
  98.   },
  99.   "routing": {
  100.     "domainStrategy": "IPOnDemand",
  101.     "rules": [
  102.       {
  103.         "type": "field",
  104.         "ip": [
  105.           "0.0.0.0/8",
  106.           "10.0.0.0/8",
  107.           "100.64.0.0/10",
  108.           "127.0.0.0/8",
  109.           "169.254.0.0/16",
  110.           "172.16.0.0/12",
  111.           "192.0.0.0/24",
  112.           "192.0.2.0/24",
  113.           "192.168.0.0/16",
  114.           "198.18.0.0/15",
  115.           "198.51.100.0/24",
  116.           "203.0.113.0/24",
  117.           "::1/128",
  118.           "fc00::/7",
  119.           "fe80::/10"
  120.         ],
  121.         "outboundTag": "blocked"
  122.       },
  123.       {
  124.         "type": "field",
  125.         "inboundTag": ["tg-in"],
  126.         "outboundTag": "tg-out"
  127.       },
  128.       {
  129.         "type": "field",
  130.         "domain": [
  131.           "domain:epochtimes.com",
  132.           "domain:epochtimes.com.tw",
  133.           "domain:epochtimes.fr",
  134.           "domain:epochtimes.de",
  135.           "domain:epochtimes.jp",
  136.           "domain:epochtimes.ru",
  137.           "domain:epochtimes.co.il",
  138.           "domain:epochtimes.co.kr",
  139.           "domain:epochtimes-romania.com",
  140.           "domain:erabaru.net",
  141.           "domain:lagranepoca.com",
  142.           "domain:theepochtimes.com",
  143.           "domain:ntdtv.com",
  144.           "domain:ntd.tv",
  145.           "domain:ntdtv-dc.com",
  146.           "domain:ntdtv.com.tw",
  147.           "domain:minghui.org",
  148.           "domain:renminbao.com",
  149.           "domain:dafahao.com",
  150.           "domain:dongtaiwang.com",
  151.           "domain:falundafa.org",
  152.           "domain:wujieliulan.com",
  153.           "domain:ninecommentaries.com",
  154.           "domain:shenyun.com"
  155.         ],
  156.         "outboundTag": "blocked"
  157.       },
  158.       {
  159.         "type": "field",
  160.         "protocol": [
  161.           "bittorrent"
  162.         ],
  163.         "outboundTag": "blocked"
  164.       }
  165.       //include_ban_ad
  166.       //include_rules
  167.       //
  168.     ]
  169.   },
  170.   "transport": {
  171.     "kcpSettings": {
  172.       "uplinkCapacity": 100,
  173.       "downlinkCapacity": 100,
  174.       "congestion": true
  175.     },
  176.     "sockopt": {
  177.       "tcpFastOpen": true
  178.     }
  179.   }
  180. }
複製代碼
.
作者: 角色    時間: 2019-1-16 16:04

26. mKCP_wireguard_dynamicPort
  1. ---------- V2Ray 配置信息 -------------

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

  3. 端口 (Port) = 31385

  4. 用户ID (User ID / UUID) = 62954e43-c597-4850-8561-d8ee4353c335

  5. 额外ID (Alter Id) = 233

  6. 传输协议 (Network) = kcp

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

  8. 备注: 动态端口已启用...

  9. ---------- END -------------

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

  11. 提示: 输入 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": 31385,
  10.       "protocol": "vmess",
  11.       "settings": {
  12.         "clients": [
  13.           {
  14.             "id": "62954e43-c597-4850-8561-d8ee4353c335",
  15.             "level": 1,
  16.             "alterId": 233
  17.           }
  18.         ],
  19.         "detour": {
  20.           "to": "dynamic"
  21.         }
  22.       },
  23.       "streamSettings": {
  24.         "network": "kcp",
  25.         "kcpSettings": {
  26.           "header": {
  27.             "type": "wireguard"
  28.           }
  29.         }
  30.       },
  31.       "sniffing": {
  32.         "enabled": true,
  33.         "destOverride": [
  34.           "http",
  35.           "tls"
  36.         ]
  37.       }
  38.     },
  39.     {
  40.       "protocol": "vmess",
  41.       "port": "10000-20000",
  42.       "tag": "dynamic",
  43.       "settings": {
  44.         "default": {
  45.           "level": 1,
  46.           "alterId": 32
  47.         }
  48.       },
  49.       "allocate": {
  50.         "strategy": "random",
  51.         "concurrency": 2,
  52.         "refresh": 5
  53.       },
  54.       "streamSettings": {
  55.         "network": "kcp",
  56.         "kcpSettings": {
  57.           "header": {
  58.             "type": "wireguard"
  59.           }
  60.         }
  61.       }
  62.     }
  63.     //include_ss
  64.     //include_socks
  65.     //include_mtproto
  66.     //include_config
  67.     //
  68.   ],
  69.   "outbounds": [
  70.     {
  71.       "protocol": "freedom",
  72.       "settings": {}
  73.     },
  74.     {
  75.       "protocol": "blackhole",
  76.       "settings": {},
  77.       "tag": "blocked"
  78.     },
  79.     {
  80.       "protocol": "freedom",
  81.       "settings": {},
  82.       "tag": "direct"
  83.     },
  84.     {
  85.       "protocol": "mtproto",
  86.       "settings": {},
  87.       "tag": "tg-out"
  88.     }
  89.   ],
  90.   "dns": {
  91.     "server": [
  92.       "8.8.8.8",
  93.       "8.8.4.4",
  94.       "1.1.1.1",
  95.       "1.0.0.1",
  96.       "localhost"
  97.     ]
  98.   },
  99.   "routing": {
  100.     "domainStrategy": "IPOnDemand",
  101.     "rules": [
  102.       {
  103.         "type": "field",
  104.         "ip": [
  105.           "0.0.0.0/8",
  106.           "10.0.0.0/8",
  107.           "100.64.0.0/10",
  108.           "127.0.0.0/8",
  109.           "169.254.0.0/16",
  110.           "172.16.0.0/12",
  111.           "192.0.0.0/24",
  112.           "192.0.2.0/24",
  113.           "192.168.0.0/16",
  114.           "198.18.0.0/15",
  115.           "198.51.100.0/24",
  116.           "203.0.113.0/24",
  117.           "::1/128",
  118.           "fc00::/7",
  119.           "fe80::/10"
  120.         ],
  121.         "outboundTag": "blocked"
  122.       },
  123.       {
  124.         "type": "field",
  125.         "inboundTag": ["tg-in"],
  126.         "outboundTag": "tg-out"
  127.       },
  128.       {
  129.         "type": "field",
  130.         "domain": [
  131.           "domain:epochtimes.com",
  132.           "domain:epochtimes.com.tw",
  133.           "domain:epochtimes.fr",
  134.           "domain:epochtimes.de",
  135.           "domain:epochtimes.jp",
  136.           "domain:epochtimes.ru",
  137.           "domain:epochtimes.co.il",
  138.           "domain:epochtimes.co.kr",
  139.           "domain:epochtimes-romania.com",
  140.           "domain:erabaru.net",
  141.           "domain:lagranepoca.com",
  142.           "domain:theepochtimes.com",
  143.           "domain:ntdtv.com",
  144.           "domain:ntd.tv",
  145.           "domain:ntdtv-dc.com",
  146.           "domain:ntdtv.com.tw",
  147.           "domain:minghui.org",
  148.           "domain:renminbao.com",
  149.           "domain:dafahao.com",
  150.           "domain:dongtaiwang.com",
  151.           "domain:falundafa.org",
  152.           "domain:wujieliulan.com",
  153.           "domain:ninecommentaries.com",
  154.           "domain:shenyun.com"
  155.         ],
  156.         "outboundTag": "blocked"
  157.       },
  158.       {
  159.         "type": "field",
  160.         "protocol": [
  161.           "bittorrent"
  162.         ],
  163.         "outboundTag": "blocked"
  164.       }
  165.       //include_ban_ad
  166.       //include_rules
  167.       //
  168.     ]
  169.   },
  170.   "transport": {
  171.     "kcpSettings": {
  172.       "uplinkCapacity": 100,
  173.       "downlinkCapacity": 100,
  174.       "congestion": true
  175.     },
  176.     "sockopt": {
  177.       "tcpFastOpen": true
  178.     }
  179.   }
  180. }
複製代碼
.
作者: 角色    時間: 2019-1-16 16:23

27. QUIC_dynamicPort
  1. ---------- V2Ray 配置信息 -------------

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

  3. 端口 (Port) = 32774

  4. 用户ID (User ID / UUID) = 29809d36-5866-4c00-8f98-5737c5672ec5

  5. 额外ID (Alter Id) = 233

  6. 传输协议 (Network) = quic

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

  8. 备注: 动态端口已启用...

  9. ---------- END -------------

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

  11. 提示: 输入 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": 32774,
  10.       "protocol": "vmess",
  11.       "settings": {
  12.         "clients": [
  13.           {
  14.             "id": "29809d36-5866-4c00-8f98-5737c5672ec5",
  15.             "level": 1,
  16.             "alterId": 233
  17.           }
  18.         ],
  19.         "detour": {
  20.           "to": "dynamic"
  21.         }
  22.       },
  23.       "streamSettings": {
  24.         "network": "quic",
  25.         "quicSettings": {
  26.           "security": "aes-128-gcm",
  27.           "key": "",
  28.           "header": {
  29.             "type": "none"
  30.           }
  31.         }
  32.       },
  33.       "sniffing": {
  34.         "enabled": true,
  35.         "destOverride": [
  36.           "http",
  37.           "tls"
  38.         ]
  39.       }
  40.     },
  41.     {
  42.       "protocol": "vmess",
  43.       "port": "10000-20000",
  44.       "tag": "dynamic",
  45.       "settings": {
  46.         "default": {
  47.           "level": 1,
  48.           "alterId": 32
  49.         }
  50.       },
  51.       "allocate": {
  52.         "strategy": "random",
  53.         "concurrency": 2,
  54.         "refresh": 5
  55.       },
  56.       "streamSettings": {
  57.         "network": "quic",
  58.         "quicSettings": {
  59.           "security": "aes-128-gcm",
  60.           "key": "",
  61.           "header": {
  62.             "type": "none"
  63.           }
  64.         }
  65.       }
  66.     }
  67.     //include_ss
  68.     //include_socks
  69.     //include_mtproto
  70.     //include_config
  71.     //
  72.   ],
  73.   "outbounds": [
  74.     {
  75.       "protocol": "freedom",
  76.       "settings": {}
  77.     },
  78.     {
  79.       "protocol": "blackhole",
  80.       "settings": {},
  81.       "tag": "blocked"
  82.     },
  83.     {
  84.       "protocol": "freedom",
  85.       "settings": {},
  86.       "tag": "direct"
  87.     },
  88.     {
  89.       "protocol": "mtproto",
  90.       "settings": {},
  91.       "tag": "tg-out"
  92.     }
  93.   ],
  94.   "dns": {
  95.     "server": [
  96.       "8.8.8.8",
  97.       "8.8.4.4",
  98.       "1.1.1.1",
  99.       "1.0.0.1",
  100.       "localhost"
  101.     ]
  102.   },
  103.   "routing": {
  104.     "domainStrategy": "IPOnDemand",
  105.     "rules": [
  106.       {
  107.         "type": "field",
  108.         "ip": [
  109.           "0.0.0.0/8",
  110.           "10.0.0.0/8",
  111.           "100.64.0.0/10",
  112.           "127.0.0.0/8",
  113.           "169.254.0.0/16",
  114.           "172.16.0.0/12",
  115.           "192.0.0.0/24",
  116.           "192.0.2.0/24",
  117.           "192.168.0.0/16",
  118.           "198.18.0.0/15",
  119.           "198.51.100.0/24",
  120.           "203.0.113.0/24",
  121.           "::1/128",
  122.           "fc00::/7",
  123.           "fe80::/10"
  124.         ],
  125.         "outboundTag": "blocked"
  126.       },
  127.       {
  128.         "type": "field",
  129.         "inboundTag": ["tg-in"],
  130.         "outboundTag": "tg-out"
  131.       },
  132.       {
  133.         "type": "field",
  134.         "domain": [
  135.           "domain:epochtimes.com",
  136.           "domain:epochtimes.com.tw",
  137.           "domain:epochtimes.fr",
  138.           "domain:epochtimes.de",
  139.           "domain:epochtimes.jp",
  140.           "domain:epochtimes.ru",
  141.           "domain:epochtimes.co.il",
  142.           "domain:epochtimes.co.kr",
  143.           "domain:epochtimes-romania.com",
  144.           "domain:erabaru.net",
  145.           "domain:lagranepoca.com",
  146.           "domain:theepochtimes.com",
  147.           "domain:ntdtv.com",
  148.           "domain:ntd.tv",
  149.           "domain:ntdtv-dc.com",
  150.           "domain:ntdtv.com.tw",
  151.           "domain:minghui.org",
  152.           "domain:renminbao.com",
  153.           "domain:dafahao.com",
  154.           "domain:dongtaiwang.com",
  155.           "domain:falundafa.org",
  156.           "domain:wujieliulan.com",
  157.           "domain:ninecommentaries.com",
  158.           "domain:shenyun.com"
  159.         ],
  160.         "outboundTag": "blocked"
  161.       },
  162.       {
  163.         "type": "field",
  164.         "protocol": [
  165.           "bittorrent"
  166.         ],
  167.         "outboundTag": "blocked"
  168.       }
  169.       //include_ban_ad
  170.       //include_rules
  171.       //
  172.     ]
  173.   },
  174.   "transport": {
  175.     "kcpSettings": {
  176.       "uplinkCapacity": 100,
  177.       "downlinkCapacity": 100,
  178.       "congestion": true
  179.     },
  180.     "sockopt": {
  181.       "tcpFastOpen": true
  182.     }
  183.   }
  184. }
複製代碼
.
作者: 角色    時間: 2019-1-16 16:51

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

28. QUIC_utp_dynamicPort


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

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

  3. 端口 (Port) = 62646

  4. 用户ID (User ID / UUID) = bfad9d5f-2b89-4e07-adf1-3949d1909ee5

  5. 额外ID (Alter Id) = 233

  6. 传输协议 (Network) = quic

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

  8. 备注: 动态端口已启用...

  9. ---------- END -------------

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

  11. 提示: 输入 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": 62646,
  10.       "protocol": "vmess",
  11.       "settings": {
  12.         "clients": [
  13.           {
  14.             "id": "bfad9d5f-2b89-4e07-adf1-3949d1909ee5",
  15.             "level": 1,
  16.             "alterId": 233
  17.           }
  18.         ],
  19.         "detour": {
  20.           "to": "dynamic"
  21.         }
  22.       },
  23.       "streamSettings": {
  24.         "network": "quic",
  25.         "quicSettings": {
  26.           "security": "aes-128-gcm",
  27.           "key": "",
  28.           "header": {
  29.             "type": "utp"
  30.           }
  31.         }
  32.       },
  33.       "sniffing": {
  34.         "enabled": true,
  35.         "destOverride": [
  36.           "http",
  37.           "tls"
  38.         ]
  39.       }
  40.     },
  41.     {
  42.       "protocol": "vmess",
  43.       "port": "10000-20000",
  44.       "tag": "dynamic",
  45.       "settings": {
  46.         "default": {
  47.           "level": 1,
  48.           "alterId": 32
  49.          }
  50.       },
  51.       "allocate": {
  52.         "strategy": "random",
  53.         "concurrency": 2,
  54.         "refresh": 5
  55.       },
  56.       "streamSettings": {
  57.         "network": "quic",
  58.         "quicSettings": {
  59.           "security": "aes-128-gcm",
  60.           "key": "",
  61.           "header": {
  62.             "type": "utp"
  63.           }
  64.         }
  65.       }
  66.     }
  67.     //include_ss
  68.     //include_socks
  69.     //include_mtproto
  70.     //include_config
  71.     //
  72.   ],
  73.   "outbounds": [
  74.     {
  75.       "protocol": "freedom",
  76.       "settings": {}
  77.     },
  78.     {
  79.       "protocol": "blackhole",
  80.       "settings": {},
  81.       "tag": "blocked"
  82.     },
  83.     {
  84.       "protocol": "freedom",
  85.       "settings": {},
  86.       "tag": "direct"
  87.     },
  88.     {
  89.       "protocol": "mtproto",
  90.       "settings": {},
  91.       "tag": "tg-out"
  92.     }
  93.   ],
  94.   "dns": {
  95.     "server": [
  96.       "8.8.8.8",
  97.       "8.8.4.4",
  98.       "1.1.1.1",
  99.       "1.0.0.1",
  100.       "localhost"
  101.     ]
  102.   },
  103.   "routing": {
  104.     "domainStrategy": "IPOnDemand",
  105.     "rules": [
  106.       {
  107.         "type": "field",
  108.         "ip": [
  109.           "0.0.0.0/8",
  110.           "10.0.0.0/8",
  111.           "100.64.0.0/10",
  112.           "127.0.0.0/8",
  113.           "169.254.0.0/16",
  114.           "172.16.0.0/12",
  115.           "192.0.0.0/24",
  116.           "192.0.2.0/24",
  117.           "192.168.0.0/16",
  118.           "198.18.0.0/15",
  119.           "198.51.100.0/24",
  120.           "203.0.113.0/24",
  121.           "::1/128",
  122.           "fc00::/7",
  123.           "fe80::/10"
  124.         ],
  125.         "outboundTag": "blocked"
  126.       },
  127.       {
  128.         "type": "field",
  129.         "inboundTag": ["tg-in"],
  130.         "outboundTag": "tg-out"
  131.       },
  132.       {
  133.         "type": "field",
  134.         "domain": [
  135.           "domain:epochtimes.com",
  136.           "domain:epochtimes.com.tw",
  137.           "domain:epochtimes.fr",
  138.           "domain:epochtimes.de",
  139.           "domain:epochtimes.jp",
  140.           "domain:epochtimes.ru",
  141.           "domain:epochtimes.co.il",
  142.           "domain:epochtimes.co.kr",
  143.           "domain:epochtimes-romania.com",
  144.           "domain:erabaru.net",
  145.           "domain:lagranepoca.com",
  146.           "domain:theepochtimes.com",
  147.           "domain:ntdtv.com",
  148.           "domain:ntd.tv",
  149.           "domain:ntdtv-dc.com",
  150.           "domain:ntdtv.com.tw",
  151.           "domain:minghui.org",
  152.           "domain:renminbao.com",
  153.           "domain:dafahao.com",
  154.           "domain:dongtaiwang.com",
  155.           "domain:falundafa.org",
  156.           "domain:wujieliulan.com",
  157.           "domain:ninecommentaries.com",
  158.           "domain:shenyun.com"
  159.         ],
  160.         "outboundTag": "blocked"
  161.       },
  162.       {
  163.         "type": "field",
  164.         "protocol": [
  165.           "bittorrent"
  166.         ],
  167.         "outboundTag": "blocked"
  168.       }
  169.       //include_ban_ad
  170.       //include_rules
  171.       //
  172.     ]
  173.   },
  174.   "transport": {
  175.     "kcpSettings": {
  176.       "uplinkCapacity": 100,
  177.       "downlinkCapacity": 100,
  178.       "congestion": true
  179.     },
  180.     "sockopt": {
  181.       "tcpFastOpen": true
  182.     }
  183.   }
  184. }
複製代碼
.
作者: 角色    時間: 2019-1-16 17:09

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

29. QUIC_srtp_dynamicPort

BifrostV client需要更改的地方:
1、用户等级:1
2、QUIC加密方式:aes-128-gcm
3、包头类型:srtp
  1. ---------- V2Ray 配置信息 -------------

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

  3. 端口 (Port) = 42923

  4. 用户ID (User ID / UUID) = 551cba0b-6802-4313-9d1a-1cb273d75879

  5. 额外ID (Alter Id) = 233

  6. 传输协议 (Network) = quic

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

  8. 备注: 动态端口已启用...

  9. ---------- END -------------

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

  11. 提示: 输入 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": 42923,
  10.       "protocol": "vmess",
  11.       "settings": {
  12.         "clients": [
  13.           {
  14.             "id": "551cba0b-6802-4313-9d1a-1cb273d75879",
  15.             "level": 1,
  16.             "alterId": 233
  17.           }
  18.         ],
  19.         "detour": {
  20.           "to": "dynamic"
  21.         }
  22.       },
  23.       "streamSettings": {
  24.         "network": "quic",
  25.         "quicSettings": {
  26.           "security": "aes-128-gcm",
  27.           "key": "",
  28.           "header": {
  29.             "type": "srtp"
  30.           }
  31.         }
  32.       },
  33.       "sniffing": {
  34.         "enabled": true,
  35.         "destOverride": [
  36.           "http",
  37.           "tls"
  38.         ]
  39.       }
  40.     },
  41.     {
  42.       "protocol": "vmess",
  43.       "port": "10000-20000",
  44.       "tag": "dynamic",
  45.       "settings": {
  46.         "default": {
  47.           "level": 1,
  48.           "alterId": 32
  49.         }
  50.       },
  51.       "allocate": {
  52.         "strategy": "random",
  53.         "concurrency": 2,
  54.         "refresh": 5
  55.       },
  56.       "streamSettings": {
  57.         "network": "quic",
  58.         "quicSettings": {
  59.           "security": "aes-128-gcm",
  60.           "key": "",
  61.           "header": {
  62.             "type": "srtp"
  63.           }
  64.         }
  65.       }
  66.     }
  67.     //include_ss
  68.     //include_socks
  69.     //include_mtproto
  70.     //include_config
  71.     //
  72.   ],
  73.   "outbounds": [
  74.     {
  75.       "protocol": "freedom",
  76.       "settings": {}
  77.     },
  78.     {
  79.       "protocol": "blackhole",
  80.       "settings": {},
  81.       "tag": "blocked"
  82.     },
  83.     {
  84.       "protocol": "freedom",
  85.       "settings": {},
  86.       "tag": "direct"
  87.     },
  88.     {
  89.       "protocol": "mtproto",
  90.       "settings": {},
  91.       "tag": "tg-out"
  92.     }
  93.   ],
  94.   "dns": {
  95.     "server": [
  96.       "8.8.8.8",
  97.       "8.8.4.4",
  98.       "1.1.1.1",
  99.       "1.0.0.1",
  100.       "localhost"
  101.     ]
  102.   },
  103.   "routing": {
  104.     "domainStrategy": "IPOnDemand",
  105.     "rules": [
  106.       {
  107.         "type": "field",
  108.         "ip": [
  109.           "0.0.0.0/8",
  110.           "10.0.0.0/8",
  111.           "100.64.0.0/10",
  112.           "127.0.0.0/8",
  113.           "169.254.0.0/16",
  114.           "172.16.0.0/12",
  115.           "192.0.0.0/24",
  116.           "192.0.2.0/24",
  117.           "192.168.0.0/16",
  118.           "198.18.0.0/15",
  119.           "198.51.100.0/24",
  120.           "203.0.113.0/24",
  121.           "::1/128",
  122.           "fc00::/7",
  123.           "fe80::/10"
  124.         ],
  125.         "outboundTag": "blocked"
  126.       },
  127.       {
  128.         "type": "field",
  129.         "inboundTag": ["tg-in"],
  130.         "outboundTag": "tg-out"
  131.       },
  132.       {
  133.         "type": "field",
  134.         "domain": [
  135.           "domain:epochtimes.com",
  136.           "domain:epochtimes.com.tw",
  137.           "domain:epochtimes.fr",
  138.           "domain:epochtimes.de",
  139.           "domain:epochtimes.jp",
  140.           "domain:epochtimes.ru",
  141.           "domain:epochtimes.co.il",
  142.           "domain:epochtimes.co.kr",
  143.           "domain:epochtimes-romania.com",
  144.           "domain:erabaru.net",
  145.           "domain:lagranepoca.com",
  146.           "domain:theepochtimes.com",
  147.           "domain:ntdtv.com",
  148.           "domain:ntd.tv",
  149.           "domain:ntdtv-dc.com",
  150.           "domain:ntdtv.com.tw",
  151.           "domain:minghui.org",
  152.           "domain:renminbao.com",
  153.           "domain:dafahao.com",
  154.           "domain:dongtaiwang.com",
  155.           "domain:falundafa.org",
  156.           "domain:wujieliulan.com",
  157.           "domain:ninecommentaries.com",
  158.           "domain:shenyun.com"
  159.         ],
  160.         "outboundTag": "blocked"
  161.       },
  162.       {
  163.         "type": "field",
  164.         "protocol": [
  165.           "bittorrent"
  166.         ],
  167.         "outboundTag": "blocked"
  168.       }
  169.       //include_ban_ad
  170.       //include_rules
  171.       //
  172.     ]
  173.   },
  174.   "transport": {
  175.     "kcpSettings": {
  176.       "uplinkCapacity": 100,
  177.       "downlinkCapacity": 100,
  178.       "congestion": true
  179.     },
  180.     "sockopt": {
  181.       "tcpFastOpen": true
  182.     }
  183.   }
  184. }
複製代碼
.
作者: 角色    時間: 2019-1-16 18:49

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

30. QUIC_wechat-video_dynamicPort

BifrostV client需要更改的地方:
1、用户等级:1
2、QUIC加密方式:aes-128-gcm
3、包头类型:wechat-video
  1. ---------- V2Ray 配置信息 -------------

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

  3. 端口 (Port) = 30779

  4. 用户ID (User ID / UUID) = 5e53b323-eaa1-4900-95e7-be68f0a8862c

  5. 额外ID (Alter Id) = 233

  6. 传输协议 (Network) = quic

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

  8. 备注: 动态端口已启用...

  9. ---------- END -------------

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

  11. 提示: 输入 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": 30779,
  10.       "protocol": "vmess",
  11.       "settings": {
  12.         "clients": [
  13.           {
  14.             "id": "5e53b323-eaa1-4900-95e7-be68f0a8862c",
  15.             "level": 1,
  16.             "alterId": 233
  17.           }
  18.         ],
  19.         "detour": {
  20.           "to": "dynamic"
  21.         }
  22.       },
  23.       "streamSettings": {
  24.         "network": "quic",
  25.         "quicSettings": {
  26.           "security": "aes-128-gcm",
  27.           "key": "",
  28.           "header": {
  29.             "type": "wechat-video"
  30.           }
  31.         }
  32.       },
  33.       "sniffing": {
  34.         "enabled": true,
  35.         "destOverride": [
  36.           "http",
  37.           "tls"
  38.         ]
  39.       }
  40.     },
  41.     {
  42.       "protocol": "vmess",
  43.       "port": "10000-20000",
  44.       "tag": "dynamic",
  45.       "settings": {
  46.         "default": {
  47.            "level": 1,
  48.            "alterId": 32
  49.         }
  50.       },
  51.       "allocate": {
  52.         "strategy": "random",
  53.         "concurrency": 2,
  54.         "refresh": 5
  55.       },
  56.       "streamSettings": {
  57.         "network": "quic",
  58.         "quicSettings": {
  59.           "security": "aes-128-gcm",
  60.           "key": "",
  61.           "header": {
  62.             "type": "wechat-video"
  63.           }
  64.         }
  65.       }
  66.     }
  67.     //include_ss
  68.     //include_socks
  69.     //include_mtproto
  70.     //include_config
  71.     //
  72.   ],
  73.   "outbounds": [
  74.     {
  75.       "protocol": "freedom",
  76.       "settings": {}
  77.     },
  78.     {
  79.       "protocol": "blackhole",
  80.       "settings": {},
  81.       "tag": "blocked"
  82.     },
  83.     {
  84.       "protocol": "freedom",
  85.       "settings": {},
  86.       "tag": "direct"
  87.     },
  88.     {
  89.       "protocol": "mtproto",
  90.       "settings": {},
  91.       "tag": "tg-out"
  92.     }
  93.   ],
  94.   "dns": {
  95.     "server": [
  96.       "8.8.8.8",
  97.       "8.8.4.4",
  98.       "1.1.1.1",
  99.       "1.0.0.1",
  100.       "localhost"
  101.     ]
  102.   },
  103.   "routing": {
  104.     "domainStrategy": "IPOnDemand",
  105.     "rules": [
  106.       {
  107.         "type": "field",
  108.         "ip": [
  109.           "0.0.0.0/8",
  110.           "10.0.0.0/8",
  111.           "100.64.0.0/10",
  112.           "127.0.0.0/8",
  113.           "169.254.0.0/16",
  114.           "172.16.0.0/12",
  115.           "192.0.0.0/24",
  116.           "192.0.2.0/24",
  117.           "192.168.0.0/16",
  118.           "198.18.0.0/15",
  119.           "198.51.100.0/24",
  120.           "203.0.113.0/24",
  121.           "::1/128",
  122.           "fc00::/7",
  123.           "fe80::/10"
  124.         ],
  125.         "outboundTag": "blocked"
  126.       },
  127.       {
  128.         "type": "field",
  129.         "inboundTag": ["tg-in"],
  130.         "outboundTag": "tg-out"
  131.       },
  132.       {
  133.         "type": "field",
  134.         "domain": [
  135.           "domain:epochtimes.com",
  136.           "domain:epochtimes.com.tw",
  137.           "domain:epochtimes.fr",
  138.           "domain:epochtimes.de",
  139.           "domain:epochtimes.jp",
  140.           "domain:epochtimes.ru",
  141.           "domain:epochtimes.co.il",
  142.           "domain:epochtimes.co.kr",
  143.           "domain:epochtimes-romania.com",
  144.           "domain:erabaru.net",
  145.           "domain:lagranepoca.com",
  146.           "domain:theepochtimes.com",
  147.           "domain:ntdtv.com",
  148.           "domain:ntd.tv",
  149.           "domain:ntdtv-dc.com",
  150.           "domain:ntdtv.com.tw",
  151.           "domain:minghui.org",
  152.           "domain:renminbao.com",
  153.           "domain:dafahao.com",
  154.           "domain:dongtaiwang.com",
  155.           "domain:falundafa.org",
  156.           "domain:wujieliulan.com",
  157.           "domain:ninecommentaries.com",
  158.           "domain:shenyun.com"
  159.         ],
  160.         "outboundTag": "blocked"
  161.       },
  162.       {
  163.         "type": "field",
  164.         "protocol": [
  165.           "bittorrent"
  166.         ],
  167.         "outboundTag": "blocked"
  168.       }
  169.       //include_ban_ad
  170.       //include_rules
  171.       //
  172.     ]
  173.   },
  174.   "transport": {
  175.     "kcpSettings": {
  176.       "uplinkCapacity": 100,
  177.       "downlinkCapacity": 100,
  178.       "congestion": true
  179.     },
  180.     "sockopt": {
  181.       "tcpFastOpen": true
  182.     }
  183.   }
  184. }
複製代碼
.
作者: 角色    時間: 2019-1-16 18:51

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

31. QUIC_dtls_dynamicPort

BifrostV client需要更改的地方:
1、用户等级:1
2、QUIC加密方式:aes-128-gcm
3、包头类型:dtls
  1. ---------- V2Ray 配置信息 -------------

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

  3. 端口 (Port) = 43514

  4. 用户ID (User ID / UUID) = 84a0a65b-20f8-4526-8d89-743d7c77df63

  5. 额外ID (Alter Id) = 233

  6. 传输协议 (Network) = quic

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

  8. 备注: 动态端口已启用...

  9. ---------- END -------------

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

  11. 提示: 输入 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": 43514,
  10.       "protocol": "vmess",
  11.       "settings": {
  12.         "clients": [
  13.           {
  14.             "id": "84a0a65b-20f8-4526-8d89-743d7c77df63",
  15.             "level": 1,
  16.             "alterId": 233
  17.           }
  18.         ],
  19.         "detour": {
  20.           "to": "dynamic"
  21.         }
  22.       },
  23.       "streamSettings": {
  24.         "network": "quic",
  25.         "quicSettings": {
  26.           "security": "aes-128-gcm",
  27.           "key": "",
  28.           "header": {
  29.             "type": "dtls"
  30.           }
  31.         }
  32.       },
  33.       "sniffing": {
  34.         "enabled": true,
  35.         "destOverride": [
  36.           "http",
  37.           "tls"
  38.         ]
  39.       }
  40.     },
  41.     {
  42.       "protocol": "vmess",
  43.       "port": "10000-20000",
  44.       "tag": "dynamic",
  45.       "settings": {
  46.         "default": {
  47.           "level": 1,
  48.           "alterId": 32
  49.         }
  50.       },
  51.       "allocate": {
  52.         "strategy": "random",
  53.         "concurrency": 2,
  54.         "refresh": 5
  55.       },
  56.       "streamSettings": {
  57.         "network": "quic",
  58.         "quicSettings": {
  59.           "security": "aes-128-gcm",
  60.           "key": "",
  61.           "header": {
  62.             "type": "dtls"
  63.           }
  64.         }
  65.       }
  66.     }
  67.     //include_ss
  68.     //include_socks
  69.     //include_mtproto
  70.     //include_config
  71.     //
  72.   ],
  73.   "outbounds": [
  74.     {
  75.       "protocol": "freedom",
  76.       "settings": {}
  77.     },
  78.     {
  79.       "protocol": "blackhole",
  80.       "settings": {},
  81.       "tag": "blocked"
  82.     },
  83.     {
  84.       "protocol": "freedom",
  85.       "settings": {},
  86.       "tag": "direct"
  87.     },
  88.     {
  89.       "protocol": "mtproto",
  90.       "settings": {},
  91.       "tag": "tg-out"
  92.     }
  93.   ],
  94.   "dns": {
  95.     "server": [
  96.       "8.8.8.8",
  97.       "8.8.4.4",
  98.       "1.1.1.1",
  99.       "1.0.0.1",
  100.       "localhost"
  101.     ]
  102.   },
  103.   "routing": {
  104.     "domainStrategy": "IPOnDemand",
  105.     "rules": [
  106.       {
  107.         "type": "field",
  108.         "ip": [
  109.           "0.0.0.0/8",
  110.           "10.0.0.0/8",
  111.           "100.64.0.0/10",
  112.           "127.0.0.0/8",
  113.           "169.254.0.0/16",
  114.           "172.16.0.0/12",
  115.           "192.0.0.0/24",
  116.           "192.0.2.0/24",
  117.           "192.168.0.0/16",
  118.           "198.18.0.0/15",
  119.           "198.51.100.0/24",
  120.           "203.0.113.0/24",
  121.           "::1/128",
  122.           "fc00::/7",
  123.           "fe80::/10"
  124.         ],
  125.         "outboundTag": "blocked"
  126.       },
  127.       {
  128.         "type": "field",
  129.         "inboundTag": ["tg-in"],
  130.         "outboundTag": "tg-out"
  131.       },
  132.       {
  133.         "type": "field",
  134.         "domain": [
  135.           "domain:epochtimes.com",
  136.           "domain:epochtimes.com.tw",
  137.           "domain:epochtimes.fr",
  138.           "domain:epochtimes.de",
  139.           "domain:epochtimes.jp",
  140.           "domain:epochtimes.ru",
  141.           "domain:epochtimes.co.il",
  142.           "domain:epochtimes.co.kr",
  143.           "domain:epochtimes-romania.com",
  144.           "domain:erabaru.net",
  145.           "domain:lagranepoca.com",
  146.           "domain:theepochtimes.com",
  147.           "domain:ntdtv.com",
  148.           "domain:ntd.tv",
  149.           "domain:ntdtv-dc.com",
  150.           "domain:ntdtv.com.tw",
  151.           "domain:minghui.org",
  152.           "domain:renminbao.com",
  153.           "domain:dafahao.com",
  154.           "domain:dongtaiwang.com",
  155.           "domain:falundafa.org",
  156.           "domain:wujieliulan.com",
  157.           "domain:ninecommentaries.com",
  158.           "domain:shenyun.com"
  159.         ],
  160.         "outboundTag": "blocked"
  161.       },
  162.       {
  163.         "type": "field",
  164.         "protocol": [
  165.           "bittorrent"
  166.         ],
  167.         "outboundTag": "blocked"
  168.       }
  169.       //include_ban_ad
  170.       //include_rules
  171.       //
  172.     ]
  173.   },
  174.   "transport": {
  175.     "kcpSettings": {
  176.       "uplinkCapacity": 100,
  177.       "downlinkCapacity": 100,
  178.       "congestion": true
  179.     },
  180.     "sockopt": {
  181.       "tcpFastOpen": true
  182.     }
  183.   }
  184. }
複製代碼
.
作者: 角色    時間: 2019-1-16 20:29

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

32. QUIC_wireguard_dynamicPort

BifrostV client需要更改的地方:
1、用户等级:1
2、QUIC加密方式:aes-128-gcm
3、包头类型:wireguard
  1. ---------- V2Ray 配置信息 -------------

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

  3. 端口 (Port) = 33204

  4. 用户ID (User ID / UUID) = 78874e66-ab17-473f-b86d-f8fdaebbedb4

  5. 额外ID (Alter Id) = 233

  6. 传输协议 (Network) = quic

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

  8. 备注: 动态端口已启用...

  9. ---------- END -------------

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

  11. 提示: 输入 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": 33204,
  10.       "protocol": "vmess",
  11.       "settings": {
  12.         "clients": [
  13.           {
  14.             "id": "78874e66-ab17-473f-b86d-f8fdaebbedb4",
  15.             "level": 1,
  16.             "alterId": 233
  17.           }
  18.         ],
  19.         "detour": {
  20.           "to": "dynamic"
  21.         }
  22.       },
  23.       "streamSettings": {
  24.         "network": "quic",
  25.         "quicSettings": {
  26.           "security": "aes-128-gcm",
  27.           "key": "",
  28.           "header": {
  29.             "type": "wireguard"
  30.           }
  31.         }
  32.       },
  33.       "sniffing": {
  34.         "enabled": true,
  35.         "destOverride": [
  36.           "http",
  37.           "tls"
  38.         ]
  39.       }
  40.     },
  41.     {
  42.       "protocol": "vmess",
  43.       "port": "10000-20000",
  44.       "tag": "dynamic",
  45.       "settings": {
  46.         "default": {
  47.           "level": 1,
  48.           "alterId": 32
  49.         }
  50.       },
  51.       "allocate": {
  52.         "strategy": "random",
  53.         "concurrency": 2,
  54.         "refresh": 5
  55.       },
  56.       "streamSettings": {
  57.         "network": "quic",
  58.         "quicSettings": {
  59.           "security": "aes-128-gcm",
  60.           "key": "",
  61.           "header": {
  62.             "type": "wireguard"
  63.           }
  64.         }
  65.       }
  66.     }
  67.     //include_ss
  68.     //include_socks
  69.     //include_mtproto
  70.     //include_config
  71.     //
  72.   ],
  73.   "outbounds": [
  74.     {
  75.       "protocol": "freedom",
  76.       "settings": {}
  77.     },
  78.     {
  79.       "protocol": "blackhole",
  80.       "settings": {},
  81.       "tag": "blocked"
  82.     },
  83.     {
  84.       "protocol": "freedom",
  85.       "settings": {},
  86.       "tag": "direct"
  87.     },
  88.     {
  89.       "protocol": "mtproto",
  90.       "settings": {},
  91.       "tag": "tg-out"
  92.     }
  93.   ],
  94.   "dns": {
  95.     "server": [
  96.       "8.8.8.8",
  97.       "8.8.4.4",
  98.       "1.1.1.1",
  99.       "1.0.0.1",
  100.       "localhost"
  101.     ]
  102.   },
  103.   "routing": {
  104.     "domainStrategy": "IPOnDemand",
  105.     "rules": [
  106.       {
  107.         "type": "field",
  108.         "ip": [
  109.           "0.0.0.0/8",
  110.           "10.0.0.0/8",
  111.           "100.64.0.0/10",
  112.           "127.0.0.0/8",
  113.           "169.254.0.0/16",
  114.           "172.16.0.0/12",
  115.           "192.0.0.0/24",
  116.           "192.0.2.0/24",
  117.           "192.168.0.0/16",
  118.           "198.18.0.0/15",
  119.           "198.51.100.0/24",
  120.           "203.0.113.0/24",
  121.           "::1/128",
  122.           "fc00::/7",
  123.           "fe80::/10"
  124.         ],
  125.         "outboundTag": "blocked"
  126.       },
  127.       {
  128.         "type": "field",
  129.         "inboundTag": ["tg-in"],
  130.         "outboundTag": "tg-out"
  131.       },
  132.       {
  133.         "type": "field",
  134.         "domain": [
  135.           "domain:epochtimes.com",
  136.           "domain:epochtimes.com.tw",
  137.           "domain:epochtimes.fr",
  138.           "domain:epochtimes.de",
  139.           "domain:epochtimes.jp",
  140.           "domain:epochtimes.ru",
  141.           "domain:epochtimes.co.il",
  142.           "domain:epochtimes.co.kr",
  143.           "domain:epochtimes-romania.com",
  144.           "domain:erabaru.net",
  145.           "domain:lagranepoca.com",
  146.           "domain:theepochtimes.com",
  147.           "domain:ntdtv.com",
  148.           "domain:ntd.tv",
  149.           "domain:ntdtv-dc.com",
  150.           "domain:ntdtv.com.tw",
  151.           "domain:minghui.org",
  152.           "domain:renminbao.com",
  153.           "domain:dafahao.com",
  154.           "domain:dongtaiwang.com",
  155.           "domain:falundafa.org",
  156.           "domain:wujieliulan.com",
  157.           "domain:ninecommentaries.com",
  158.           "domain:shenyun.com"
  159.         ],
  160.         "outboundTag": "blocked"
  161.       },
  162.       {
  163.         "type": "field",
  164.         "protocol": [
  165.           "bittorrent"
  166.         ],
  167.         "outboundTag": "blocked"
  168.       }
  169.       //include_ban_ad
  170.       //include_rules
  171.       //
  172.     ]
  173.   },
  174.   "transport": {
  175.     "kcpSettings": {
  176.       "uplinkCapacity": 100,
  177.       "downlinkCapacity": 100,
  178.       "congestion": true
  179.     },
  180.     "sockopt": {
  181.       "tcpFastOpen": true
  182.     }
  183.   }
  184. }
複製代碼
.
作者: 角色    時間: 2019-1-16 20:43

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

V2Ray (TCP) + Shadowsocks
  1. ....准备安装了咯..看看有毛有配置正确了...

  2. ---------- 安装信息 -------------

  3. V2Ray 传输协议 = TCP

  4. V2Ray 端口 = 54140

  5. Shadowsocks 端口 = 25739

  6. Shadowsocks 密码 = 233blog.com

  7. Shadowsocks 加密协议 = chacha20-ietf-poly1305

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

  9. 按 Enter 回车键 继续....或按 Ctrl + C 取消.
複製代碼
.
  1. ---------- V2Ray 配置信息 -------------

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

  3. 端口 (Port) = 54140

  4. 用户ID (User ID / UUID) = d8388914-f5a5-40eb-b9e4-40f7af37ee81

  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. ---------- Shadowsocks 配置信息 -------------

  12. 服务器地址 = a.b.c.d

  13. 服务器端口 = 25739

  14. 密码 = 233blog.com

  15. 加密协议 = chacha20-ietf-poly1305

  16. SS 链接 = ss://Y2hhY2hhMjAtaWV0Zi1wb2x5MTMwNToyMzNibG9nLmNvbUA2Ni45OC4xMjcuMzQ6MjU3Mzk=#233now.com_ss_a.b.c.d

  17. 备注: Shadowsocks Win 4.0.6 客户端可能无法识别该 SS 链接

  18. 提示: 输入 v2ray ssqr 可生成 Shadowsocks 二维码链接
複製代碼
.
  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": 54140,
  10.       "protocol": "vmess",
  11.       "settings": {
  12.         "clients": [
  13.           {
  14.             "id": "d8388914-f5a5-40eb-b9e4-40f7af37ee81",
  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.     {
  32.       "protocol": "shadowsocks",
  33.       "port": 25739,
  34.       "settings": {
  35.         "method": "chacha20-ietf-poly1305",
  36.         "password": "233blog.com",
  37.         "network": "tcp,udp",
  38.         "level": 1,
  39.         "ota": false
  40.       }
  41.     }
  42.     //include_socks
  43.     //include_mtproto
  44.     //include_config
  45.     //
  46.   ],
  47.   "outbounds": [
  48.     {
  49.       "protocol": "freedom",
  50.       "settings": {}
  51.     },
  52.     {
  53.       "protocol": "blackhole",
  54.       "settings": {},
  55.       "tag": "blocked"
  56.     },
  57.     {
  58.       "protocol": "freedom",
  59.       "settings": {},
  60.       "tag": "direct"
  61.     },
  62.     {
  63.       "protocol": "mtproto",
  64.       "settings": {},
  65.       "tag": "tg-out"
  66.     }
  67.   ],
  68.   "dns": {
  69.     "server": [
  70.       "8.8.8.8",
  71.       "8.8.4.4",
  72.       "1.1.1.1",
  73.       "1.0.0.1",
  74.       "localhost"
  75.     ]
  76.   },
  77.   "routing": {
  78.     "domainStrategy": "IPOnDemand",  
  79.     "rules": [
  80.       {
  81.         "type": "field",
  82.         "ip": [
  83.           "0.0.0.0/8",
  84.           "10.0.0.0/8",
  85.           "100.64.0.0/10",
  86.           "127.0.0.0/8",
  87.           "169.254.0.0/16",
  88.           "172.16.0.0/12",
  89.           "192.0.0.0/24",
  90.           "192.0.2.0/24",
  91.           "192.168.0.0/16",
  92.           "198.18.0.0/15",
  93.           "198.51.100.0/24",
  94.           "203.0.113.0/24",
  95.           "::1/128",
  96.           "fc00::/7",
  97.           "fe80::/10"
  98.         ],
  99.         "outboundTag": "blocked"
  100.       },
  101.       {
  102.         "type": "field",
  103.         "inboundTag": ["tg-in"],
  104.         "outboundTag": "tg-out"
  105.       },
  106.       {
  107.         "type": "field",
  108.         "domain": [
  109.           "domain:epochtimes.com",
  110.           "domain:epochtimes.com.tw",
  111.           "domain:epochtimes.fr",
  112.           "domain:epochtimes.de",
  113.           "domain:epochtimes.jp",
  114.           "domain:epochtimes.ru",
  115.           "domain:epochtimes.co.il",
  116.           "domain:epochtimes.co.kr",
  117.           "domain:epochtimes-romania.com",
  118.           "domain:erabaru.net",
  119.           "domain:lagranepoca.com",
  120.           "domain:theepochtimes.com",
  121.           "domain:ntdtv.com",
  122.           "domain:ntd.tv",
  123.           "domain:ntdtv-dc.com",
  124.           "domain:ntdtv.com.tw",
  125.           "domain:minghui.org",
  126.           "domain:renminbao.com",
  127.           "domain:dafahao.com",
  128.           "domain:dongtaiwang.com",
  129.           "domain:falundafa.org",
  130.           "domain:wujieliulan.com",
  131.           "domain:ninecommentaries.com",
  132.           "domain:shenyun.com"
  133.         ],
  134.         "outboundTag": "blocked"
  135.       },
  136.       {
  137.         "type": "field",
  138.         "protocol": [
  139.           "bittorrent"
  140.         ],
  141.         "outboundTag": "blocked"
  142.       }
  143.       //include_ban_ad
  144.       //include_rules
  145.       //
  146.     ]
  147.   },
  148.   "transport": {
  149.     "kcpSettings": {
  150.       "uplinkCapacity": 100,
  151.       "downlinkCapacity": 100,
  152.       "congestion": true
  153.     },
  154.     "sockopt": {
  155.       "tcpFastOpen": true
  156.     }
  157.   }
  158. }
複製代碼

作者: 角色    時間: 2019-1-16 21:03

终于把233yes.com的已经一键安装的v2ray config.json的configuration scripts展示出来,那么我们可以跟官网www.v2ray.com比较就知道官网的parameter manual是怎样用的。
作者: 角色    時間: 2019-1-17 13:14

在官网 www.v2ray.com的一键安装script
  1. bash <(curl -L -s https://install.direct/go.sh)
複製代碼
Default v2ray configuration script "config.json":
  1. {
  2.   "inbounds": [{
  3.     "port": 14271,
  4.     "protocol": "vmess",
  5.     "settings": {
  6.       "clients": [
  7.         {
  8.           "id": "d0988d09-45b7-4d9f-92bc-0fc6ef1adf68",
  9.           "level": 1,
  10.           "alterId": 64
  11.         }
  12.       ]
  13.     }
  14.   }],
  15.   "outbounds": [{
  16.     "protocol": "freedom",
  17.     "settings": {}
  18.   },{
  19.     "protocol": "blackhole",
  20.     "settings": {},
  21.     "tag": "blocked"
  22.   }],
  23.   "routing": {
  24.     "rules": [
  25.       {
  26.         "type": "field",
  27.         "ip": ["geoip:private"],
  28.         "outboundTag": "blocked"
  29.       }
  30.     ]
  31.   }
  32. }
複製代碼

作者: 角色    時間: 2019-1-17 20:13

本帖最後由 角色 於 2019-1-17 20:25 編輯

Starting from the official v2ray default configuration to websocket network
  1. {
  2.   "log": {
  3.     "access": "/var/log/v2ray/access.log",
  4.      "error": "/var/log/v2ray/error.log",
  5.      "loglevel": "warning"
  6.   },
  7.   "inbounds": [{
  8.     "port": 12345,
  9.     "protocol": "vmess",
  10.     "settings": {
  11.       "clients": [
  12.         {
  13.           "id": "UUID",
  14.           "level": 1,
  15.           "alterId": 64
  16.         }
  17.       ]
  18.     },
  19.     "streamSettings": {
  20.       "network": "ws"
  21.     }
  22.   }],
  23.   "outbounds": [{
  24.     "protocol": "freedom",
  25.     "settings": {}
  26.   },{
  27.     "protocol": "blackhole",
  28.     "settings": {},
  29.     "tag": "blocked"
  30.   }],
  31.   "routing": {
  32.     "rules": [
  33.       {
  34.         "type": "field",
  35.         "ip": ["geoip:private"],
  36.         "outboundTag": "blocked"
  37.       }
  38.     ]
  39.   }
  40. }
複製代碼
.
作者: 角色    時間: 2019-1-17 20:24

Starting from the official v2ray default configuration to tcp network
  1. {
  2.   "log": {
  3.     "access": "/var/log/v2ray/access.log",
  4.      "error": "/var/log/v2ray/error.log",
  5.      "loglevel": "warning"
  6.   },
  7.   "inbounds": [{
  8.     "port": 12345,
  9.     "protocol": "vmess",
  10.     "settings": {
  11.       "clients": [
  12.         {
  13.           "id": "UUID",
  14.           "level": 1,
  15.           "alterId": 64
  16.         }
  17.       ]
  18.     },
  19.     "streamSettings": {
  20.       "network": "ws"
  21.     }
  22.   }],
  23.   "outbounds": [{
  24.     "protocol": "freedom",
  25.     "settings": {}
  26.   },{
  27.     "protocol": "blackhole",
  28.     "settings": {},
  29.     "tag": "blocked"
  30.   }],
  31.   "routing": {
  32.     "rules": [
  33.       {
  34.         "type": "field",
  35.         "ip": ["geoip:private"],
  36.         "outboundTag": "blocked"
  37.       }
  38.     ]
  39.   }
  40. }
複製代碼
.
作者: 角色    時間: 2019-1-18 00:14

9. mKCP_wechat-video (start from v2ray default configuration)
  1. {
  2.   "log": {
  3.     "access": "/var/log/v2ray/access.log",
  4.      "error": "/var/log/v2ray/error.log",
  5.      "loglevel": "warning"
  6.   },
  7.   "inbounds": [{
  8.     "port": 12345,
  9.     "protocol": "vmess",
  10.     "settings": {
  11.       "clients": [
  12.         {
  13.           "id": "UUID",
  14.           "level": 1,
  15.           "alterId": 64
  16.         }
  17.       ]
  18.     },
  19.     "streamSettings": {
  20.       "network": "kcp",
  21.       "kcpSettings": {
  22.         "header": {
  23.           "type": "wechat-video"
  24.         }
  25.       }
  26.     }
  27.   }],
  28.   "outbounds": [{
  29.     "protocol": "freedom",
  30.     "settings": {}
  31.   },{
  32.     "protocol": "blackhole",
  33.     "settings": {},
  34.     "tag": "blocked"
  35.   }],
  36.   "routing": {
  37.     "rules": [
  38.       {
  39.         "type": "field",
  40.         "ip": ["geoip:private"],
  41.         "outboundTag": "blocked"
  42.       }
  43.     ]
  44.   }
  45. }
複製代碼

作者: Skypeus    時間: 2019-1-20 00:33

233 的太多233的广告了,条条代码都写上233
作者: 角色    時間: 2019-1-20 12:06

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

连Alter ID = 233,官网例题是64,我用它主要协助学习怎样configure。参考怎样configure V2Ray server。

如果不太懂怎样configure,可以考虑用。
作者: vpn-learner    時間: 2019-2-2 14:16

本帖最後由 vpn-learner 於 2019-2-2 14:18 編輯

回復 1# 角色

  [attach]4278[/attach]  

师兄,请问 233yes 是否安全啊? 之前我安装的一个一键安装v2ray 不能成功啊!
作者: 角色    時間: 2019-2-2 15:37

有人说不安全,对我来说,我只看他的configuration examples,看好后,我记录下来,然后post上来,而我用上面的官方script安装,然后去修改/etc/v2ray/config.json 文件。




歡迎光臨 電訊茶室 (http://telecom-cafe.com/forum/) Powered by Discuz! 7.2