Linux系统设置全局代理(http代理,socks代理)

临时

  • export http_proxy=http://ip:port
  • export https_proxy=http://ip:port

永久

 

  1. vim /etc/profile
  2. http_proxy=http://127.0.0.1:9666 #代理程序地址
  3. https_proxy=http://127.0.0.1:9666
  4. ftp_proxy=http://127.0.0.1:9666
  5. export http_proxy
  6. export ftp_proxy
  7. export https_proxy

 

代理变量的配置

 

针对上面变量的设置方法:

1、在/etc/profile文件

2、在~/.bashrc

3、在~/.zshrc

4、在/etc/profile.d/文件夹下新建一个文件xxx.sh

写入如下配置:

  1. export proxy="http://192.168.5.14:8118"
  2. export http_proxy=$proxy
  3. export https_proxy=$proxy
  4. export ftp_proxy=$proxy
  5. export no_proxy="localhost, 127.0.0.1, ::1"

而对于要取消设置可以使用如下命令,其实也就是取消环境变量的设置:

  • unset http_proxy
  • unset https_proxy
  • unset ftp_proxy
  • unset no_proxy

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注