返回列表 發帖

V2Ray使用教程——基础概念3

本帖最後由 角色 於 2019-2-27 18:50 編輯

如果不安装其他软件,厂家自带的软件里的设备如iPad,Windows10,他们是不可以接入socks(socks5)proxy server的,如果不能安装别的软件,那么我们怎样办呢? 我们可以多一个inbound——“http”,那么系统就会有两个inbounds。

为了大家能了解以下内容,建议大家先看看我之前的写的基础概念1和2[1,2].



References:
[1] http://www.telecom-cafe.com/foru ... &extra=page%3D1
[2] http://www.telecom-cafe.com/foru ... &extra=page%3D1
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

本帖最後由 角色 於 2019-2-27 18:51 編輯

VN2的config.json跟《V2Ray使用教程——基础概念2》一样,我们这里只展示VN1的config.json.

VN1 config.json contains:
  1. {
  2.   "inbounds": [
  3.     {
  4.       "port": 1080,  
  5.       "protocol": "http"
  6.     },
  7.     {
  8.       "port": 1081,  
  9.       "protocol": "socks"
  10.     }
  11.   ],
  12.   "outbounds": [
  13.     {
  14.       "protocol": "vmess",
  15.       "settings": {
  16.         "vnext": [
  17.           {
  18.            "address": "VN2-node-IP or hostname",
  19.             "port": 10086,
  20.             "users": [
  21.               {"id": "UUID"}
  22.             ]
  23.           }
  24.         ]
  25.       }
  26.     },
  27.     {
  28.       "protocol": "freedom",
  29.       "tag": "direct",
  30.       "settings": {}
  31.     }
  32.   ],
  33.   "routing": {
  34.     "domainStrategy": "IPIfNonMatch",
  35.     "rules": [
  36.       {
  37.        "type": "field",
  38.         "domain": [ "geosite:cn"],
  39.         "outboundTag": "direct"
  40.       },
  41.       {
  42.         "type": "field",
  43.         "ip": [
  44.           "geoip:cn",
  45.           "geoip:private"
  46.         ],
  47.         "outboundTag": "direct"
  48.       }
  49.     ]
  50.   }  
  51. }
複製代碼
.

要更改的部分有
  1.            "address": "VN2-node-IP or hostname",
  2.            "port": 10086   
  3.            {"id": "UUID"}
複製代碼

TOP

iPad settings for http proxy:

Settings -> WiFi -> look at the connected WiFi and fine letter "i" info (right-hand-side of WiFi signal bar) -> HTTP proxy (Configure Proxy) -> choose Manual -> server: 192.168.55.22, port: 1080。

Windows 10 settings for http proxy:
Start -> Control Panel -> Network and Internet -> Proxy -> Use Proxy click Open -> Address: 192.168.55.22, Port: 1080

TOP

本帖最後由 角色 於 2019-2-25 12:10 編輯

测试结果:

用http proxy,同时都可以看YouTube 和 爱奇艺VIP(只能在大陆地区看的影片),效果非常满意。

TOP

返回列表