1.功能介绍
- 系统状态监控
- 支持多用户多协议,浏览器可视化操作,无需敲命令
- 支持的协议:vmess、shadowsocks、dokodemo-door、socks、http
- vmess 支持的传输配置:tcp(http伪装、tls)、kcp(伪装)、ws(tls)、http(tls)、quic(tls)
- 支持账号流量统计
- 支持自定义 v2ray 配置模板
- 支持 https 访问面板(需自备域名 + ssl 证书)
- 更多高级配置项,详见面板
2.v2-ui安装
2.1 手动安装 v2ray
vim v2ray-install.sh
- 并填入以下内容
if [[ -e "/usr/bin/yum" ]]
then
yum update -y
yum install -y lrzsz git zip unzip curl wget qrencode libcap
else
apt-get update -y
apt-get install -y lrzsz git zip unzip curl wget qrencode libcap2-bin dbus
fi
rm -rf /tmp/233boy/v2ray
git clone https://github.com/crazypeace/v2ray -b "master" /tmp/233boy/v2ray --depth=1
cd /tmp/233boy/v2ray
chmod +x install.sh
./install.sh local
- 运行
v2ray-install.sh
bash v2ray-install.sh
2.2 手动安装 v2-ui
下载最新的 v2-ui-linux.tar.gz 文件(下载地址1|下载地址2),并上传至 VPS 的 /root/ 目录下。若你上传至其它的目录,则将第一行命令的 cd /root/ 改为 cd (实际的目录),不用包括文件名。
cd /root/
mv v2-ui-linux.tar.gz /usr/local/
cd /usr/local/
tar zxvf v2-ui-linux.tar.gz
rm v2-ui-linux.tar.gz -f
cd v2-ui
chmod +x v2-ui
cp -f v2-ui.service /etc/systemd/system/
systemctl daemon-reload
systemctl enable v2-ui
systemctl restart v2-ui
curl -o /usr/bin/v2-ui -Ls https://raw.githubusercontent.com/forevergooe/v2-ui/master/v2-ui.sh
chmod +x /usr/bin/v2-ui
- v2-ui.sh文件备份:下载
3.访问测试
访问地址:
域名:65432
,默认用户名:admin
,默认密码:admin
。
- 然后进入账号列表完成账号的添加即可
4.面板其它操作
v2-ui # 显示管理菜单 (功能更多)
v2-ui start # 启动 v2-ui 面板
v2-ui stop # 停止 v2-ui 面板
v2-ui restart # 重启 v2-ui 面板
v2-ui status # 查看 v2-ui 状态
v2-ui enable # 设置 v2-ui 开机自启
v2-ui disable # 取消 v2-ui 开机自启
v2-ui log # 查看 v2-ui 日志
v2-ui update # 更新 v2-ui 面板
v2-ui install # 安装 v2-ui 面板
v2-ui uninstall # 卸载 v2-ui 面板
评论 (0)