返回列表 發帖
本帖最後由 角色 於 2019-2-15 19:37 編輯

Jump Starter for V2ray Server using Raspberry Pi 3b+

Dropbox download link:
https://www.dropbox.com/s/ysewjm ... 2ray_v4.15.zip?dl=0

Features:
V2Ray version 4.15
sshd enabled

Errata:
1、在/etc/dhdcpcd.conf里的”# interface eth0”,应该为“interface eth0”,但是不影响功能,修改时可以把“#”号去掉。

TOP

本帖最後由 角色 於 2019-2-16 15:00 編輯

Jump Starter for V2ray Server using Raspberry Pi 3b+

Features:
- V2Ray  version 4.16
- applied the most update and upgrade packages

Dropbox download link:
https://www.dropbox.com/s/0aa5hf ... 2ray_v4.16.zip?dl=0

TOP

因为香港人要吃“快餐”,所以我做了这个懒人包,有兴趣的members,可以按照我这幅帖子的内容购买Raspberry Pi 3b+,然后下载“懒人包”,再改一下参数就搞定!!!那么你就可以大陆看香港新闻,看看Facebook,WhatsApp,YouTube等等。

如果你在安装上遇到什么问题,可以跟帖讨论。如果你的账号还在审批中,你可以给我PM,我会跟坛主说一下。

TOP

Jump Starter for V2ray Server using Raspberry Pi 3b+

File name: rpi_v2ray_v4.18.zip

Dropbox download link:
https://www.dropbox.com/s/p0a2u4 ... 2ray_v4.18.zip?dl=0

Features:
- V2Ray  version 4.18
- applied the most update and upgrade packages
- change the Raspbian and Debian sources from China to Singapore

TOP

回復 19# 角色
可否做到WS +TLS?  我裝梅林V2ray 基本。開始有斷線和被Qos現象。  Thanks.

TOP

本帖最後由 角色 於 2019-3-22 16:33 編輯

因为我没有架设网站的经验,所以还在学习中,不过我会朝着这个目标走!就如Kingwilliam那样,他已经写了不少的帖子关于这方面,你可以参考一下。

还有这个是懒人包,弄得比较简单一点,不然新的members不太会用。

TOP

回復 20# slemon

C hing 你梅林是server定client? 想如何設定 可一齊研究。

TOP

回復 22# kingwilliam
我用梅林做Server.  跟著企業號首3頁設定的。很簡單。之前都穩定的,現在有時會被封。要轉IP.

TOP

本帖最後由 kingwilliam 於 2019-3-22 21:19 編輯

回復 23# slemon

c hing 以下代碼是server side ws+tls config 給參考, cert.crt and cert.key 就是證書和密匙.

domain :
最好有一個 domain, 退一步 dyndns, no-ip 都可以.

certificate :
- 證書可以用 Let's Encrypt, 可到 SSL For Free 申請, 如真的不能提供 http / ftp. 可退一步用self sign cert.
- cert.crt and cert.key 可放到/etc/v2ray/ folder, 即config.json同一個folder

self sign cert :
可到以下 網址 參考

Remarks :
如用merlin, 建議準備 u盘 (8g已可以), 用作 swap
參考 網址

server side ws+tls config
  1. //ws-tls main port 443
  2. {
  3.         "protocol": "vmess",
  4.         "port": 443,
  5.         "settings": {
  6.                 "clients": [
  7.                         {
  8.                                 "id": "id",
  9.                                 "alterId": 64
  10.                         }
  11.                 ]
  12.         },
  13.         "streamSettings": {
  14.                 "network": "ws",
  15.                 "wsSettings": {
  16.                         "path": "/vpath2/"
  17.                 },
  18.                 "security": "tls",
  19.                 "tlsSettings": {
  20.                         "certificates": [
  21.                                 {
  22.                                         "certificateFile": "/etc/v2ray/cert.crt",
  23.                                         "keyFile": "/etc/v2ray/cert.key"
  24.                                 }
  25.                         ]
  26.                 }
  27.         }
  28. }
複製代碼

TOP

回復 24# kingwilliam
師兄,用咗Let's Encrypt Cert., 改咗config.json.  整個V2ray load唔起。Reboot, 改回原本設定都唔得。結果整個V2ray 要重裝。未知原因 XD.

TOP

回復 25# slemon


    有冇有試過 v2ray -test, 有沒有error. 或可否post config.json 上來一齊研究(記得先清除 id)

TOP

回復 26# kingwilliam
V2ray load完,正常Error log 會記寫V2ray started.  但改完, reboot 和 load V2ray,Error log 和 access log files 都消失咗.  出咗街,遲D一步步試。Thanks.

TOP

回復 26# kingwilliam
師兄,我用這個config.json.  請幫忙睇睇,Let's Encrypt是梅林DDNS自設更新的。 謝謝!
"log" : {
    "access": "/var/log/v2ray/access.log",
    "error": "/var/log/v2ray/error.log",
    "loglevel": "warning"
  },
  "inbound": {
    "port": 443,
    "protocol": "vmess",
    "settings": {
      "clients": [
        {
          "id": "user1 id",
          "level": 1,
          "alterId": 64
        },
        {
          "id": "user2 id",
          "alterId": 64
        },
        {
          "id": "user3 id",
          "alterId": 64
        },
        {
          "id": "user4 id",
          "alterId": 64
        }
      ]
    },
    "streamSettings": {
       "network": "ws"
       "wsSettings": {
          "path": "/jffs"
                },
       "security": "tls",
       "tlsSettings": {
          "certificates": [
                {
                 "certificateFile": "/jffs/.le/xxxxx.asuscomm.com/cert.pem",
                 "keyFile": "/jffs/.le/xxxxx.asuscomm.com/domain.key"
                }
              ]
            }
          }
  },
  "outbound": {
    "protocol": "freedom",
    "settings": {}
  },
  "outboundDetour": [
    {
      "protocol": "blackhole",
      "settings": {},
      "tag": "blocked"
    }
  ],
  "routing": {
    "strategy": "rules",
    "settings": {
      "rules": [
        {
          "type": "field",
          "ip": [
            "0.0.0.0/8",
            "10.0.0.0/8",
            "100.64.0.0/10",
            "127.0.0.0/8",
            "169.254.0.0/16",
            "172.16.0.0/12",
            "192.0.0.0/24",
            "192.0.2.0/24",
            "198.18.0.0/15",
            "198.51.100.0/24",
            "203.0.113.0/24",
            "::1/128",
            "fc00::/7",
            "fe80::/10"
          ],
          "outboundTag": "blocked"
        }
      ]
    }
  }
}

TOP

本帖最後由 kingwilliam 於 2019-3-24 06:36 編輯

回復 28# slemon
  1. "streamSettings": {
  2.        "network": "ws"
  3.        "wsSettings": {
複製代碼
"ws" 後小了 "豆號"  加後試試正常否
  1. "streamSettings": {
  2.        "network": "ws",
  3.        "wsSettings": {
複製代碼

TOP

不知道效果怎眼?

TOP

返回列表