返回列表 發帖
回復  gameplayer

安装V2Ray on Raspberry Pi,可以看下面帖子:



安装V2Ray,里面自带shadowsocks。 ...
角色 發表於 2018-9-12 21:14



    Ching ,有無openconnect 教學?

TOP

Openconnect, 在下面的帖子:

http://www.telecom-cafe.com/foru ... &extra=page%3D1

TOP

你买Raspberry Pi哪个model?是3b+吗?买多少钱?在哪里买呢?

TOP

本帖最後由 角色 於 2018-9-13 11:02 編輯

Samples of V2Ray Configuration File

Same port number but different UUIDs
  1. pi@raspberrypi:/etc/v2ray $ cat config.json
  2. {
  3.   "log" : {
  4.     "access": "/var/log/v2ray/access.log",
  5.     "error": "/var/log/v2ray/error.log",  /* 后面还有句子,所以要加“,” */
  6.     "loglevel": "warning"  /* 后面没有句子,所以不需要假“,” */
  7.   },
  8.   "inbound": {
  9.     "port": 443,
  10.     "protocol": "vmess",
  11.     "settings": {
  12.       "clients": [    /* 可以有多个clients  */
  13.         {
  14.           "email": “name1@v2ray.com",
  15.           "id": “UUID1",
  16.           "level": 1,  /* 后面还有句子,所以要加“,” */
  17.           "alterId": 64  /* 后面没有句子,所以不需要假“,” */
  18.         },  /* 后面还有句子,所以要加“,” */
  19.         {
  20.           "email": “name2@v2ray.com",
  21.           "id": “UUID2",
  22.           "level": 1,
  23.           "alterId": 64
  24.         },
  25.         {
  26.           "email": “name3@v2ray.com",
  27.           "id": “UUID3",
  28.           "level": 1,
  29.           "alterId": 64
  30.         }  /* 后面没有句子,所以不需要假“,” */
  31.       ]  /* 后面没有句子,所以不需要假“,” */
  32.     }  /* 后面没有句子,所以不需要假“,” */
  33.   },   /* 后面还有句子,所以要加“,” */
  34.   "outbound": {
  35.     "protocol": "freedom",
  36.     "settings": {}
  37.   },
  38.   "outboundDetour": [
  39.     {
  40.       "protocol": "blackhole",
  41.       "settings": {},
  42.       "tag": "blocked"
  43.     }
  44.   ],
  45.   "routing": {
  46.     "strategy": "rules",
  47.     "settings": {
  48.       "rules": [
  49.         {
  50.           "type": "field",
  51.           "ip": [
  52.             "0.0.0.0/8",
  53.             "10.0.0.0/8",
  54.             "100.64.0.0/10",
  55.             "127.0.0.0/8",
  56.             "169.254.0.0/16",
  57.             "172.16.0.0/12",
  58.             "192.0.0.0/24",
  59.             "192.0.2.0/24",
  60.             "192.168.0.0/16",
  61.             "198.18.0.0/15",
  62.             "198.51.100.0/24",
  63.             "203.0.113.0/24",
  64.             "::1/128",
  65.             "fc00::/7",
  66.             "fe80::/10"
  67.           ],
  68.           "outboundTag": "blocked"
  69.         }  /* 后面没有句子,所以不需要假“,” */
  70.       ]    /* 后面没有句子,所以不需要假“,” */
  71.     }     /* 后面没有句子,所以不需要假“,” */
  72.   }       /* 后面没有句子,所以不需要假“,” */
  73. }         /* 后面没有句子,所以不需要假“,” */
  74. pi@raspberrypi:/etc/v2ray $
複製代碼

TOP

另外的config file
  1. pi@raspberry:/etc/v2ray $ cat config.json
  2. // General settings for config.json
  3. // vmess port: port_number
  4. // shadowsocks port: port_number
  5. //
  6. // Family Settings
  7. // vmess port: port_number1, level = 1
  8. // Friend Settings
  9. // vmess port: port_number2, level = 0
  10. {
  11.   "log" : {
  12.     "access": "/var/log/v2ray/access.log",
  13.     "error": "/var/log/v2ray/error.log",
  14.     "loglevel": "warning"
  15.   },
  16.   "inbound": {
  17.     "port": port_number,
  18.     "protocol": "vmess",
  19.     "settings": {
  20.     "clients": [
  21.         {
  22.           "id": “UUID",
  23.           "level": 1,
  24.           "alterId": 64
  25.         }
  26.       ]
  27.     }
  28.   },
  29.   "outbound": {
  30.     "protocol": "freedom",
  31.     "settings": {}
  32.   },
  33.   "inboundDetour": [
  34.         {
  35.           "port": port_number,
  36.           "protocol": "vmess",
  37.           "settings": {
  38.             "clients": [
  39.               {
  40.                 "mail": “name@v2ray.com",
  41.                 "id": “UUID",
  42.                 "level": 1,
  43.                 "alterId": 64
  44.               }
  45.             ]
  46.           }
  47.         },
  48.         {
  49.           "port": port_number,
  50.           "protocol": "vmess",
  51.           "settings": {
  52.             "clients": [
  53.               {
  54.                 "mail": “name@v2ray.com",
  55.                 "id": “UUID”,
  56.                 "level": 1,
  57.                 "alterId": 64
  58.               }
  59.             ]
  60.           }
  61.         },
  62.         {
  63.           "port": port_number,
  64.           "protocol": "vmess",
  65.           "settings": {
  66.             "clients": [
  67.               {
  68.                 "mail": “name@v2ray.com",
  69.                 "id": “UUID",
  70.                 "level": 0,
  71.                 "alterId": 64
  72.               },
  73.               {
  74.                 "mail": “name@v2ray.com",
  75.                 "id": “UUID",
  76.                 "level": 0,
  77.                 "alterId": 64
  78.               },
  79.               {
  80.                 "mail": “name@v2ray.com",
  81.                 "id": “UUID”,
  82.                 "level": 0,
  83.                 "alterId": 64
  84.               }
  85.             ]
  86.           }
  87.         },
  88.         {
  89.           "protocol": "shadowsocks",
  90.           "port": port_number,
  91.           "settings": {
  92.               "method": "chacha20-ietf-poly1305",
  93.               "password": “password",
  94.               "level": 1        
  95.           }
  96.         },
  97.         {
  98.           "protocol": "shadowsocks",
  99.           "port": port_number,
  100.           "settings": {
  101.               "method": "chacha20-ietf-poly1305",
  102.               "password": “passowrd",
  103.               "level": 1
  104.           }
  105.         },
  106.         {
  107.           "protocol": "shadowsocks",
  108.           "port": port_number,
  109.           "settings": {
  110.               "method": "aes-256-gcm",
  111.               "password": “passowrd",
  112.               "level": 1
  113.           }
  114.         }
  115.   ],
  116.   "outboundDetour": [
  117.       {
  118.           "protocol": "freedom",
  119.           "settings": {}
  120.       }
  121.   ]
  122. }
  123. pi@raspberry:/etc/v2ray $
複製代碼

TOP

你买Raspberry Pi哪个model?是3b+吗?买多少钱?在哪里买呢?
角色 發表於 2018-9-13 07:10



    我買的是3B,在閒魚買,跟張16G micro SD,電源,機及線,加運費RMB112. 付運中。

TOP

Openconnect, 在下面的帖子:
角色 發表於 2018-9-13 07:09



    Thanks CHing.

TOP

我買的是3B,在閒魚買,跟張16G micro SD,電源,機及線,加運費RMB112. 付運中。 ...
gameplayer 發表於 2018-9-13 22:55


“閒魚”在哪里?总共(含运费)是RMB112吗?

TOP

“閒魚”在哪里?总共(含运费)是RMB112吗?
角色 發表於 2018-9-14 07:48



    閒魚係內地一個二手網站,好像得手機app先用到。
連國內運費112人民幣,最近有個賣家放幾百部,可能係礦機,價格相對便宜,但唔知有無伏,仲未到手。

TOP

如果是这个价格,真的不贵。

TOP

如果是这个价格,真的不贵。
角色 發表於 2018-9-14 09:07



    之前收到機,今天才有時間開機。兩部都正常,可以話十分抵用。
依家開始摸索系統同裝 VPNs。

TOP

你先安装好Raspbian。

你可以post条link出来,大家可以参考采购。

TOP

你先安装好Raspbian。

你可以post条link出来,大家可以参考采购。
角色 發表於 2018-9-24 09:52



    其實系阿裏巴巴旗下的二手交易網-要下載app 先可以用到-閒魚,所以post 唔到link。
有需要可以下載個app 查看個賣家中有無賣,我見好多人一次買好多部。

https://2.taobao.com/?spm=2007.1000261.0.0.135334f1NdImmZ

TOP

我也在淘宝看过,准备入货,学习Raspbian 及V2ray, 基本套餐RMB379(Raspbian Pi 3 B+),据说 送张 16G TF card 已安装官方镜像 系统了?!

TOP

不过,这东西(Raspbian V2Ray)我是从零开始, 不知搞多久了。。。。 况且刚刚才在搬瓦工装上了ss, 需要点时间学习和理解搬瓦工VPS的功能。

TOP

返回列表