v2ray安装
centos 7(64) 系统
- 防火墙
查看防火墙是否开启
firewall-cmd --state
重载防火墙,使新规则生效
firewall-cmd --complete-reload
查看打开的端口
firewall-cmd --list-ports
- 启动&停止 防火墙
sytemctl start firewalld
systemctl stop firewalld
开机启动或停止 防火墙
systemctl enable firewalld
systemctl disable firewalld
- 添加端口
- 直接编辑规则文件
vi /etc/firewalld/zones/public.xml
添加相应端口如下行: 1
2<port protocol="tcp" port="服务器端口"/>
<port protocol="udp" port="服务器端口"/>
- 命令
firewall-cmd --zone=public --add-port=port/tcp --permanent
安装v2ray & 更新(更新的话在执行一遍即可)
bash <(curl -L https://raw.githubusercontent.com/v2fly/fhs-install-v2ray/master/install-release.sh)
创建配置文件(/etc/v2ray/config.json)
验证配置文件 && 生成uuid
/usr/bin/v2ray/v2ray --test -config=/path/to/config.json
输出configuration ok即为合法的配置
/usr/bin/v2ray/v2ctl uuid
v2ray命令
service v2ray start|stop|status|reload|restart|force-reload
systemctl enable/disable v2ray
修改ssh端口
vim /etc/ssh/sshd_config
找到port修改/etc/init.d/sshd restart
重启ssh服务
ubuntu 系统
- 防火墙
apt install ufw
安装防火墙ufwvi /etc/default/ufw
查看默认策略ufw status [numbered]
查看防火墙状态
ufw allow[/deny] 80/tcp
开启某个端口
可在云服务器厂商网页中配置防火墙端口
安装bbr2
./bbr2.sh
执行大神们写好的脚本安装v2ray
安装v2ray & 更新(更新的话在执行一遍即可)
wget https://install.direct/go.sh && bash go.sh
创建配置文件(/etc/v2ray/config.json)
验证配置文件 && 生成uuid
/usr/bin/v2ray/v2ray --test -config=/path/to/config.json
输出configuration ok即为合法的配置
/usr/bin/v2ray/v2ctl uuid
v2ray命令
service v2ray start|stop|status|reload|restart|force-reload
systemctl enable/disable v2ray
修改ssh端口
vim /etc/ssh/sshd_config
找到port修改/etc/init.d/sshd restart
重启ssh服务