本帖最後由 角色 於 2019-2-24 13:19 編輯
安装V2Ray,client和server的program都是一样,它们不同的地方就是它们的configuration file——config.json,所以学好怎样configure是非常关键。
在[1],你可以看到configuration file的总貌:- {
- "log": {},
- "api": {},
- "dns": {},
- "stats": {},
- "routing": {},
- "policy": {},
- "reverse": {},
- "inbounds": [],
- "outbounds": [],
- "transport": {}
- }
複製代碼 .
一般的settings,我们用inbounds,outbounds和routing比较多。- {
- "routing": {},
- "inbounds": [],
- "outbounds": []
- }
複製代碼 .
在某些情况,我们都可以把routing省略,变成:- {
- "inbounds": [],
- "outbounds": []
- }
複製代碼 .
在最前的列表项数会随着时间而增加。
怎样安装V2Ray,大家可以看官网和白话文就可以。
References:
[1] https://v2ray.com/chapter_02/01_overview.html |