🌎 代理服务器
从零开始带你搭建主流的代理服务器:shadowsocks、xray、v2ray 等,推荐使用 xray 以及 v2ray 。
安装与配置代理服务器
shadowsocks、xray、v2ray 安装与配置,另附一键安装脚本。
使用代理(本机与虚拟机)
分别介绍在物理机、虚拟机、路由器中使用代理的方法。
- Git 使用代理
git config --global http.proxy 'socks5://127.0.0.1:1089' git config --global https.proxy 'socks5://127.0.0.1:1089'
- Dnf、yum 使用代理
sudo vim /etc/yum.repos.d/packer.repo
- 添加
proxy=http://127.0.0.1:8889
- curl 使用 http 代理
export http_proxy="http://127.0.0.1:8889" export https_proxy="http://127.0.0.1:8889"
- 一定要取消 Qv2ray 中的 “首选项---入站设置---设置系统代理” 的勾选
- Qv2ray 中的 “首选项---入站设置---监听地址“ 设置为 "0.0.0.0” 表示允许局域网访问代理
- 在 ubuntu20.04.4 中使用代理,可去 “设置---网络---网络代理” 选择 “手动”
- HTTP、HTTPS、FTP 设置
- IP 填写为主机的 IP,如:192.168.2.26
- 端口填写为 Qv2ray 中设置的 HTTP 端口,如:8889
- 也可使用命令开启代理
git config --global http.proxy 'socks5://192.168.2.26:1089' git config --global https.proxy 'socks5://192.168.2.26:1089' export http_proxy="http://192.168.2.26:8889" export https_proxy="http://192.168.2.26:8889"
- 一定要注意此处的 ip 与端口,端口可去 Qv2ray 中的 “首选项---入站设置” 查找
- 在终端使用 curl -I www.google.com 测试,如果返回 301 或者 200 表示可访问外网
文章更新中。。。
FAQ
- xray 客户端与服务端配置文件模板
- VLESS+TCP+XTLS 被防火墙识别问题 read first