v2ray 常用设置
安装
- 安装 wget:
sudo apt-get install wget -y
- 下载一键安装脚本:
wget https://git.io/v2ray.sh
- 修改脚本执行权限:
chmod +x ./v2ray.sh
- 执行安装:
sudo ./v2ray.sh
查看版本
/usr/bin/v2ray/v2ray -version
查看配置文件
cat /etc/v2ray/config.json
alterId 需要客户端服务器一致
启动/停止/重启 服务
sudo systemctl start v2ray
sudo systemctl stop v2ray
sudo systemctl restart v2ray
查看运行状态
sudo systemctl status v2ray
升级
参考: 安装 v2ray
- 下载脚本
wget https://install.direct/go.sh
- 安装/更新
sudo bash go.sh
校正时间
- 查看时间
date -R
- 设置时区为 UTC+8
rm /etc/localtime
ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
- 同步时间服务器,校正时间
debian: apt-get install ntpdate
centos: yum install ntpdate
- 校正(任选一个地址)
ntpdate 0.asia.pool.ntp.org
ntpdate 1.asia.pool.ntp.org
ntpdate 2.asia.pool.ntp.org
ntpdate 3.asia.pool.ntp.org
ntpdate time.nist.gov
安装 BBR
denbian9,ubuntu18.1自带启用BBR,所以不用另外安装,centOS7需要另外安装代码
- 安装脚本
wget --no-check-certificate https://github.com/teddysun/across/raw/master/bbr.sh && chmod +x bbr.sh && ./bbr.sh
- 重启服务器
- 重启后,查看BBR状态
lsmod | grep bbr
,返回值有 tcp_bbr 模块即说明 bbr 已启动