V2ray节点搭建教程,一键搭建v2ray节点,支持多用户,socks5

Debian 11 安装 curl

若提示:-bash: curl: command not found

升级系统

sudo apt update && sudo apt upgrade

执行安装curl

sudo apt install curl

或者

sudo apt-get install curl

一键安装3x-ui

bash <(curl -Ls https://raw.githubusercontent.com/mhsanaei/3x-ui/master/install.sh)

或一键安装x-ui

bash <(curl -Ls https://raw.githubusercontent.com/vaxilu/x-ui/master/install.sh)

设置面板信息

我这里,用户名设置为test,密码为test,端口为5000。这些根据实际情况设置。

访问面板:http://ip地址:端口号

例如:http://104.21.74.228:5000,这个ip是你自己的服务器的ip地址,端口号是你上面设置的端口号

然后开启开放对应端口:

 

 

iptables -I INPUT -p tcp --dport 5000 -j ACCEPT
iptables -I INPUT -p tcp --dport 443 -j ACCEPT
iptables -I INPUT -p tcp --dport 80 -j ACCEPT

 

 

#节点对应的端口也要放行

输入:

sudo apt-get install iptables

,然后按y,安装完毕后,重新输入上面的指令开放对应的端口

访问面板:http://ip地址:端口号

例如:http://104.21.74.228:5000,这个ip是你自己的服务器的ip地址,端口号是你上面设置的端口号