客户端安装(linux服务器访问外网)
安装xray客户端
bash -c "$(curl -L https://github.com/XTLS/Xray-install/raw/main/install-release.sh)" @ install
# 如果下载xray慢,使用以下脚本
bash -c "$(curl -L wp-content/uploads/script_software/install-release.sh)" @ install
添加配置文件
配置文件在/usr/local/etc/xray/config.json
可在已配置好的Windows客户端里导出配置写入该文件
重启服务
systemctl restart xray
检查是否生效
客户端启动后即可看到本地的 socks 代理端口为指定的 10808和10809
检查是否生效
curl -x socks5://127.0.0.1:10808 https://www.google.com -v
如果能返回则表示配置成功
虽然我们设置了系统代理,但是终端下并不会走代理,所以还要配置以下设置
配置全局生效
虽然启动了xray客户端,但是要配置流量走xray的代理出去才行
vim ~/.bashrc
export ALL_PROXY="socks5://127.0.0.1:10808"
export http_proxy="http://127.0.0.1:10809"
export https_proxy="http://127.0.0.1:10809"
source ~/.bashrc
其他错误处理
注:linux翻墙后,安装软件可能会提示错误[Errno 14] HTTP Error 503 - Service Unavailable
,需更换源
cd /etc/yum.repos.d/
mv CentOS-Base.repo CentOS-Base-repo.bak
wget http://mirrors.163.com/.help/CentOS7-Base-163.repo
yum clean all
mv CentOS7-Base-163.repo CentOS-Base.repo
mv epel.repo epel.repo.bak
yum makecache -y
yum update -y
服务器搭建(ss协议)
一键安装ss
bash <(curl -sL https://storage.googleapis.com/tiziblog/ss.sh)
或者
bash <(curl -sL wp-content/uploads/script_software/server/ss/ss.sh)
服务器搭建(v2ray协议)
项目地址:https://github.com/v2fly/fhs-install-v2ray
(在大陆服务器需翻墙才可安装)
需在云主机防火墙开放80和443端口,否则证书无法生效。
一键安装脚本(vmess已测试正常)
wget -N --no-check-certificate -q -O install.sh "https://raw.githubusercontent.com/wulabing/V2Ray_ws-tls_bash_onekey/master/install.sh" && chmod +x install.sh && bash install.sh
一键安装脚本(vless)
# 安装和更新v2ray
bash <(curl -L https://raw.githubusercontent.com/v2fly/fhs-install-v2ray/master/install-release.sh)
# 卸载v2ray
bash <(curl -L https://raw.githubusercontent.com/v2fly/fhs-install-v2ray/master/install-release.sh) --remove
服务器搭建(xray协议)
项目地址:https://github.com/wulabing/Xray_onekey
(在大陆服务器需翻墙才可安装)
云主机开放80和443端口
# VLESS + TCP + TLS + Nginx + WebSocket
wget -N --no-check-certificate -q -O install.sh "https://raw.githubusercontent.com/wulabing/Xray_onekey/nginx_forward/install.sh" && chmod +x install.sh && bash install.sh
# VLESS + TCP + XTLS / TLS + Nginx
wget -N --no-check-certificate -q -O install.sh "https://raw.githubusercontent.com/wulabing/Xray_onekey/main/install.sh" && chmod +x install.sh && bash install.sh
# 启动 Xray:systemctl start xray
# 停止 Xray:systemctl stop xray
# 启动 Nginx:systemctl start nginx
# 停止 Nginx:systemctl stop nginx
#相关目录:
Web 目录:/www/xray_web
Xray 服务端配置:/usr/local/etc/xray/config.json
Nginx 目录: /etc/nginx
证书文件: /ssl/xray.key(私钥)和 /ssl/xray.crt(证书公钥)
Xray协议(202312测试ok)
bash <(curl -sL https://raw.githubusercontent.com/daveleung/hijkpw-scripts-mod/main/xray_mod1.sh)
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
评论(0)