Linux 设置和取消代理 proxy

一、设置代理
以下是临时设置代理的方式。如果想默认就走代理,只需要将下面内容放到 .bashrc 或 .profile 或 .bash_profile 文件中即可

export ALL_PROXY=socks5://ip:1082
export HTTP_PROXY=http://ip:1082
export HTTPS_PROXY=http://ip:1082
二、取消代理
unset  ALL_PROXY
unset HTTP_PROXY
unset HTTPS_PROXY

你可能感兴趣的:(linux,运维,服务器)