博文

目前显示的是标签为“bbr”的博文

KVM VPS上配置V2Ray(Shadowsocks mode) + 加速:普通BBR/魔改BBR(测试于Ubuntu 16.04)

首先, 你需要在KVM架构的VPS上部署服务,因为BBR不支持OpenVZ. 出于价格的原因,推荐Bandwagonhost和Vultr. 以下是链接: Bandwagonhost Vultr (或者点击 此处 获取重大优惠, 限时有效) 我建议选择Ubuntu16.04或者之后版本作为OS。在一切就绪并且从本地可以ping通服务器后,SSH连接VPS。 步骤1: V2RAY V2RAY是新一代的数据代理软件,几乎支持所有协议. 此处选择我们熟悉的Shadowsocks作为协议。 在SSH终端中输入以下命令: bash <(curl -L -s https://install.direct/go.sh) 然后使用你熟悉的文本编辑器编辑 '/etc/v2ray/config.json'. 此处,我使用vim作为我的编辑器. 请注意,安装之后, 将会产生一个默认的'config.json'. 你可以将其备份并在原位置使用一样的文件名新建一个'config.json'. vim /etc/v2ray/config.json 在你新建的'config.json'文件中,添加如下内容. { "inbounds" : [ { "port" : 1024 , // 监听端口 "protocol" : "shadowsocks" , "settings" : { "method" : "aes-128-gcm" , "ota" : false , // 是否开启 OTA "password" : "sspasswd" } } ], "outbounds" : [ { "protocol" : "freedom" , "settings" ...

Configure V2Ray(Shadowsocks mode) + 加速:普通BBR/魔改BBR on KVM VPS (Tested on Ubuntu 16.04)

First of all, you will need to deploy a VPS with KVM technology as BBR does not support OpenVZ but KVM. I recommend Bandwagonhost and Vultr because of the price. Here is the link to register and deploy: Bandwagonhost Vultr (Or click here to get a big discount, only available for a LIMITED TIME ) Here I suggest you choose Ubuntu 16.04 or later versions as your OS. After everything is ready and you can successfully ping your server from your local environment, connect to your VPS via SSH. Now let's start. Step 1: V2RAY V2RAY is a new generation of software for data proxy. It supports almost all protocols. Here let's choose Shadowsocks as our protocol with which most of us are familiar. Type in the following command in your SSH terminal to install: bash <(curl -L -s https://install.direct/go.sh) Then use your favorite text editor to edit the configuration file located at '/etc/v2ray/config.json'. Here I use vim as my editor and you can use whatever you a...