上网要科学。
v2ray 官网(需要科学的网络环境)
懒得折腾
搬瓦工官方机场芜湖起飞,洛杉矶折扣后 5.5 刀一个月,速度还可以,不用担心封 IP,不过外服游戏会断线。日本的买不起。
自己动手
有 3.5 刀一个月的日本 VPS,但是有封 IP 的可能,封了 IP 要找商家更换。
CentOS 7 服务器
SSH 连接
1
2$ ssh <user>@<ip> [-p <port>]
$ 输密码官方安装脚本,敲命令就完事了
1
2$ bash <(curl -L https://raw.githubusercontent.com/v2fly/fhs-install-v2ray/master/install-release.sh)
$ systemctl enable v2ray服务端配置文件示例
放在
/usr/local/etc/v2ray/config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37{
"inbounds": [
{
"port": 23580,
"protocol": "vmess",
"settings": {
"clients": [
{
"id": "{id}",
"level": 1,
"alterId": 64
}
]
}
}
],
"outbounds": [
{
"protocol": "freedom",
"settings": {}
},
{
"protocol": "blackhole",
"settings": {},
"tag": "blocked"
}
],
"routing": {
"rules": [
{
"type": "field",
"ip": ["geoip:private"],
"outboundTag": "blocked"
}
]
}
}文档(需要科学的网络环境)
管理服务
1
2
3
4
5
6
7
8
9
10# 启动
$ systemctl start v2ray
# 停止
$ systemctl stop v2ray
# 重启
$ systemctl restart v2ray
# 禁用
$ systemctl disable [--now] v2ray
# 查看状态
$ systemctl status v2ray
客户端
v2rayN 3.x 有 PAC 模式。4.x 没有,要自己配置路由规则更麻烦一点。