Linux(debian)常用代理设置
在某些情况下,我们需要将 Debian 系统的网络流量通过代理服务器进行转发和加速,以提高网络速度和安全性。本文将介绍 Debian 如何设置代理服务器,并提供相应的代码示例。
比如我们使用v2raya来代理,那么就输入命令:
0x01 环境变量设置
# 设置代理;
echo 'export https_proxy="http://127.0.0.1:7890"' >> ~/.bashrc
echo 'export http_proxy=$https_proxy' >> ~/.bashrc
echo 'export ftp_proxy=$https_proxy' >> ~/.bashrc
echo 'export proxy=$https_proxy' >> ~/.bashrc
echo 'export HTTPS_PROXY=$https_proxy' >> ~/.bashrc
echo 'export HTTP_PROXY=$https_proxy' >> ~/.bashrc
echo 'export FTP_PROXY=$https_proxy' >> ~/.bashrc
echo 'export PROXY=$https_proxy' >> ~/.bashrc
# 取消代理;
vim ~/.bashrc # 编辑.bashrc文件删除或注释代理设置;
0x02 apt 代理设置
# 设置代理;
echo 'Acquire::http::proxy "http://127.0.0.1:7890";' | tee -a /etc/apt/apt.conf
echo 'Acquire::https::proxy "https://127.0.0.1:7890";' | tee -a /etc/apt/apt.conf
# 取消代理;
vim /etc/apt/apt.conf # 编辑apt.conf文件删除或注释代理设置;
0x03 wget 代理设置
# 设置代理;
echo 'https_proxy=http://127.0.0.1:7890' | tee -a /etc/wgetrc
echo 'http_proxy=http://127.0.0.1:7890' | tee -a /etc/wgetrc
echo 'ftp_proxy=http://127.0.0.1:7890' | tee -a /etc/wgetrc
echo '#check_certificate = off' >> ~/.wgetrc
# 取消代理;
vim /etc/wgetrc # 编辑wgerrc文件删除或注释代理设置;
0x04 curl 代理设置
# 设置代理;
echo 'proxy = "http://127.0.0.1:7890"' >> ~/.curlrc
echo '#insecure' >> ~/.curlrc
# 取消代理;
vim ~/.curlrc # 编辑curlrc文件删除或注释代理设置;
0x05 git 代理设置
# 设置代理;
git config --global https.proxy http://127.0.0.1:7890
git config --global http.proxy http://127.0.0.1:7890
# 取消代理;
git config --global --unset http.proxy
git config --global --unset https.proxy
# 取消代理;
git config --global -l # 查看git设置;
git config --global -e # 编辑git设置,删除设置;
0x06 pip 代理设置
# pip 代理命令语法;
pip [command] --proxy http://[address]:[port] [arg]
# 代理安装pyperclip示例;
pip install --proxy http://127.0.0.1:7890 pyperclip
0x07 docker 代理设置
# 设置代理;
mkdir /etc/systemd/system/docker.service.d
echo '[Service]' | tee -a /etc/systemd/system/docker.service.d/http-proxy.conf
echo 'Environment="HTTP_PROXY=http://127.0.0.1:7890"' | tee -a /etc/systemd/system/docker.service.d/http-proxy.conf
systemctl daemon-reload
systemctl restart docker
# 取消代理;
vim /etc/systemd/system/docker.service.d # 编辑docker.service.d文件删除或注释代理设置;
具体设置方法
- 设置 HTTP 代理服务器
在 Debian 系统中,通过设置 HTTP_PROXY 环境变量来实现 HTTP 代理服务器的配置。打开终端,输入以下命令:
export http_proxy="http://代理服务器IP:代理服务器端口号"
这里以 IP 地址为 192.168.0.1,端口号为 8888 的代理服务器为例。将命令中的“代理服务器IP”和“代理服务器端口号”分别替换为实际的代理服务器 IP 和端口号。
如果要将代理服务器的用户名和密码加入到 HTTP 代理服务器的配置中,可以使用以下命令:
export http_proxy="http://代理服务器用户名:代理服务器密码@代理服务器IP:代理服务器端口号"
这里将用户名和密码分别替换为实际的代理服务器用户名和密码。
为了让上面的命令在开机自启动时自动执行,可以将其添加到 /etc/profile 文件中。打开终端,输入以下命令:
sudo nano /etc/profile
在文件底部添加以下命令:
export http_proxy="http://代理服务器IP:代理服务器端口号"
保存修改并退出,然后重启系统使设置生效:
sudo reboot
- 设置 HTTPS 代理服务器
为了让 Debian 系统在使用 HTTPS 协议时也能够使用代理服务器,需要将 HTTPS_PROXY 环境变量设置为相应的代理服务器地址和端口。打开终端,输入以下命令:
export https_proxy="http://代理服务器IP:代理服务器端口号"
同样地,将命令中的“代理服务器IP”和“代理服务器端口号”分别替换为实际的代理服务器 IP 和端口号。
如果代理服务器需要用户名和密码认证,则可以使用以下命令:
export https_proxy="http://代理服务器用户名:代理服务器密码@代理服务器IP:代理服务器端口号"